Appsheet locale

Hi, I have read the documentation regarding Appsheet locale, and mine is set up correctly, however the date in a virtual column expression is displayed in MMDDYYYY, not DDMMYYY like the Google sheet or the locale, the formula is: 

TODAY() - WEEKDAY(TODAY()) + 2 & " to Today"

jonbowles84_0-1644466626207.png

jonbowles84_1-1644466648931.png

jonbowles84_2-1644466670593.png

jonbowles84_3-1644466696867.png

 

Any ideas?

 

Solved Solved
0 3 291
1 ACCEPTED SOLUTION

Date Time display values are dependent on many settings - spreadsheet locale, AppSheet locale, device locale and browser locale. 

In your case since you anyway seem to be wanting to display a text message, you could try using text functions as below to show the date in dd/mm/yyyy format

TEXT((TODAY() - WEEKDAY(TODAY()) + 2), "DD/MM/YYYY") & " to Today"

https://help.appsheet.com/en/articles/3517328-text

View solution in original post

3 REPLIES 3

Date Time display values are dependent on many settings - spreadsheet locale, AppSheet locale, device locale and browser locale. 

In your case since you anyway seem to be wanting to display a text message, you could try using text functions as below to show the date in dd/mm/yyyy format

TEXT((TODAY() - WEEKDAY(TODAY()) + 2), "DD/MM/YYYY") & " to Today"

https://help.appsheet.com/en/articles/3517328-text

Thankyou!!

For the date to reflect the Locale correctly, the column has to be of type Date or DateTime, not Text. If you want to use Text type then you have to manually format the text. 

You can use this expression:

TEXT(TODAY() - WEEKDAY(TODAY()) + 2, "dd/mm/yyyy")  & " to Today"

Top Labels in this Space