Convert Month

How to convert Jun to June?

Hi @Sweety_Girl

Can you try this two ways,

Datetime.ParseExact(input_month ,“MMM”,System.Globalization.CultureInfo.InvariantCulture).ToString(“MMMM”)

Please find the attached xaml for your reference.MonthConversion.xaml (5.4 KB)

Thanks
LatikaMonthConversion_new.xaml (4.9 KB)

@Sweety_Girl

I think @Latika10011740 almost had it,
MonthName = “Jun”

DateTime.ParseExact(MonthName,“MMM”,System.Globalization.CultureInfo.CurrentCulture).ToString(“MMMM”)