Hi everyone,
is there any possibility to have the Date column in Glide Table in this format - mm/yyyy ?
Shortest format is now mm/dd/yyyy…
Thank you,
M.V.
Hi everyone,
is there any possibility to have the Date column in Glide Table in this format - mm/yyyy ?
Shortest format is now mm/dd/yyyy…
Thank you,
M.V.
No, not directly - which I find a constant source of annoyance.
If you want a specific date format for display in your app, then you need to construct a string that matches the desired format with a combination of math and template columns. Essentially, you need to deconstruct the date into its year/month/day components, and then piece them back together again.
Can you give me an ideea ? I deconstructed the date with Split Text, now what ?
Split Text won’t help you. As I mentioned, you need to use math and template columns.
Assume your date is in a column called “date”:
Year(date)
- this will give you the yearMonth(date)
- this will give you the month number{pad}{month}/{year}
, where:
You made my day !