Formatting a Date Value Individually With Locale$()

The Locale$() function can be used to format date values individually for each country. You can use the Locale$() function to output the day of the week and the month in English and then chain the remaining date parts.

Example: Friday, September 12, 2018

Locale$(42 + ((dow(now()) +5) % 7), "en-us") + ", " + Locale$(56 + month(now()) - 1, "en-us") + " " + Day$(Now()) + ", " + Year$(Now())