Hello Community Team,
I need your help with changing the date format from (mm/dd/yyyy) to (dd/mm/yyyy).
Hello Community Team,
I need your help with changing the date format from (mm/dd/yyyy) to (dd/mm/yyyy).
Locale settings should take care of Date and Numeric formats for you automatically.
If that doesn’t apply for your app, then you can use the TEXT() function with a Date format string. Click the link for more details and implementation examples.
It,'s not working
Please show what you have tried.
Actually, I’m confused how to go?
TEXT([YourDateColumn], “dd/mm/yyyy”)
Incase if it is action
([ORDER DATE],"dd/mm/yyyy ")
(Today(), "dd/mm/yyyy ")
If this didn’t work. Please share the table screenshot
I think @jaichith might have shortcut things. His suggested items are to be used with the TEXT() function.
**TEXT**(Today(), "dd/mm/yyyy")
TEXT() returns a text string which is not a Date type.
I am not sure if you can manipulate the format of a Date column other than tweaking your device locale.
https://support.google.com/appsheet/answer/10106702?sjid=13588342874908908651-AP
"
Date, Time, and DateTime formats are displayed in AppSheet apps based on:
https://support.google.com/appsheet/answer/10106702?hl=en
If you are using chrome go to chrome://settings/languages and make UK as your #1 language
For more reference:
https://support.google.com/appsheet/answer/10107701?hl=en
Please check for Gsheet , Table locale. This can inhibit your results.
Hello there!
I wanted to bring to your attention that when I fill out the form, the date format appears correct. However, when I receive the email, the format of the date changes and the data source also aappears to be different like email. For your reference, I have attached an image.
As mentioned by @WillowMobileSys please put TEXT(Today(), “dd/mm/yyyy”) in your email body/email template
Hello everyone,
After changing the DATA locale from USA to IND, the issue was resolved. Also, note that you don’t need to change any formula from today().
![]()
![]()
For long time we were insisting this For changing locale.
Please note that this was suggested in very first response to your post. Maybe it wasn’t clear what this meant? If so, simply ask,we are all here to help. The important thing is that you got to the easy solution in the end.
Even though you resolved your initial problem, your error is another learning opportunity.
The issue causing the error is that you placed the function INSIDE of column name delimiters in the template.
The initial problem expression:
<<**[**TEXT(Today(), "dd/mm/yyyy")**]**>>
Square brackets, “”, are used to designate column names and are not required in this expression. The correct syntax, in a template, is:
<<TEXT(Today(), "dd/mm/yyyy")>>