Month Name
Month Name
I have a variable that contains a datetime (such as 09/23/2010; 03:59:38). I need to be able to pull out just the month into a single field and convert it to a name. The Month() function only returns an integer and I need the actual month name (such as September).
Month Name
Either of these should work
or
Code: Select all
{Format("{0:MMMM}", Datasource.MyDate)}
Code: Select all
{Datasource.MyDate.ToString("MMMM")}
Month Name
That worked. Thanks!