Date format -

Hi All,

Just need a little help here. I have a date in format 08/15/2023 00:00:00, I want to see it as Tuesday, August 15,2023.

Can anyone please help me with this?

Thanks in advance :slight_smile:

@kaurM

Please try this

DateTime.ParseExact("08/15/2023 00:00:00","MM/dd/yyyy HH:mm:ss",System.Globalization.CultureInfo.InvariantCulture).ToString("dddd, MMMM dd,yyyy")

image

you can use a variable in place of the date …but I hope your date format is always same

cheers

Thank you so much! It worked :slight_smile:

1 Like

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