Reputation: 47
I have this formula in a textbox to generate the date, time, and seconds. I want to format the date to mm/dd/yyyy instead of yyyy/mm/dd
translate(now(), "_-:T", "")
Upvotes: 0
Views: 2603
Reputation: 327
Use functions concat, substring, translate
concat(substring(translate(now(), "_-:T", ""), 5, 2), "/", substring(translate(now(), "_-:T", ""), 7, 2), "/", substring(translate(now(), "_-:T", ""), 1, 4))
OUTPUT: 09/12/2014
Upvotes: 2