Assign "MMM" Month format to variable

Hello all,

How I assign “MMM” e.g “SEP” month format to a variable?

Thanking you all

Hi @Yugal_Raju

How about this expression?

Use Assign activity

StrVal = Datetime.Now.Tostring("MMM")
StrVal = DateTime.Now.ToString("MMM").ToUpper

Regards
Gokul

Hello @Yugal_Raju
Kindly try this Expression it may helps you

DateTime.now.ToString("MMM").ToUpper

image

image

Your question remains a little bit open, as the business case cannot be derived from

When it is about getting the MMM from a date then the toString(“MMM”) will do it as mentioned by others above

When the short Month name is to retrieve in general have a look on following

InvariantCulture:
grafik

Specific Culture (e.g. Spain)

It is working Thank you!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.