Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
i have a date field like below
CreatedDate
20-02-2018
i want to change the format to 20/Feb/2018
how to change this ? can anyone help on this?
thanks
Nave
Hi Naveen, you an try with:
Date(CreatedDate, 'DD/MMM/YYYY')
Or:
Date(Date#(CreatedDate, 'DD-MM-YYYY'), 'DD/MMM/YYYY')
=DATE(DATE#('20-02-2018','DD-MM-YYYY'),'DD/MMM/YYYY')
or
=DATE(DATE#(CreatedDate,'DD-MM-YYYY'),'DD/MMM/YYYY')
Hi Naveen,
Try the below code
Date(Date#(CreatedDate, 'DD-MM-YYYY'), 'DD/MMM/YYYY')
Thanks,
Venkata Sreekanth
Date(Date#(CreatedDate, 'DD-MM-YYYY'), 'DD/MMM/YYYY')
Use Timestamp function:
timestamp(CreatedDate, 'DD/MMM/YYYY')