core.noscript.text
I have date column with values populated as --> 2022-09-05
I want to convert these values as Sep 5, 2022 respectively
Solved! Go to Solution.
Hi @PB41091 the following formula will convert that date
DateTimeFormat([your field],"%b %d, %Y")
You can find more information regarding the specifers for date formats in this link.
@PB41091 as mentioned by @JosephSerpis you can use the DateTimeFormat function for this
It worked, thanks.