How to convert month in text format?

The image shows a spreadsheet listing purchase order numbers, dates, and descriptions. (Captioned by AI)
i need add column Month convert month text format.

@domsmgtmeet22,

Use Format Cells activity with custom format selected as desired Month format.

Thanks,
Ashok :slight_smile:

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

@domsmgtmeet22,

Try this way.

SubFlow.xaml (7.4 KB)

i have only excel classic activity… kindly share another method

@domsmgtmeet22,

Use Format Cells classic activity in Excel Application Scope.

don’t format cell activity have

:slight_smile: 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 :slight_smile: