Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, all,
I have field named date of type date which looks like:
2013-06-19
How do I convert it to:
1.19/06/2013
2.Month named Jun (not 6)
3.Quarter named Q-2
4.Year 2013
Thanks in advance!
Inna.
Hi,
1) date(date,'DD/MM/YYYY')
2) Month(date)
3) 'Q-' & Ceil(Month(date)/3)
4) year(date)
BR
Ariel
Hi,
1) date(date,'DD/MM/YYYY')
2) Month(date)
3) 'Q-' & Ceil(Month(date)/3)
4) year(date)
BR
Ariel
Thank you, it works!