
i need add column Month convert month text format.
Use Format Cells activity with custom format selected as desired Month format.
Thanks,
Ashok ![]()
kindly share work flow
Formatteddate =Datetime.Parseexcat(inputdate,yourformat,System.globalisation.cultureInfo.InvariantCulture).tostring.(dd MMM yyyy)
kindly share work flow
In your work flow
Use for each row activity
And that for row item get the value of date column and than use assign activity with anyone mention line
And store it where you want
@domsmgtmeet22 kindly share your xaml flow here in case of issues,
thanks
i have only excel classic activity… kindly share another method
Use Format Cells classic activity in Excel Application Scope.
don’t format cell activity have
domsmgtmeet22,
Ok in this case you only have VBA option.
Use Invoke VBA Activity.
Put this code in a text file and change the Sheet name and Column as per your data.
Sub Macro1()
ThisWorkbook.Sheets("Sheet1").Columns("B:B").NumberFormat = "mmmm"
End Sub
If require you can refer this documentation on how to use it.
Thanks,
Ashok ![]()

