Write date as 'Thursday 09th March'?

Is there away to get today date in the format given in the question?

Hi @Rowley101

Give a try with

DateTime.Today.ToString("dddd dd'th' MMMM")

Regards

2 Likes

The above solution will work but keep in mind that depending on the day of the month, it may not always be ‘th’… you may need an if statement to determine whether you are using ‘th’, ‘st’, ‘nd’ or ‘rd’

1 Like

Hi @Rowley101 please check the attached .xaml file which works for all Dates like 1st,2nd 3rd etc
Random(Autosaved).xaml (19.2 KB)

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