Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a spreadsheet which contains a date column. However, some of the dates are formated as dd/mm/yyyy and some are dd.mm.yyyy. Is there a way of formatting all these date as dd/mm/yyyy
Thanks
Try like below,
alt(date(date#(DateField,'dd/mm/yyyy'),'DD-MM-YYYY'),date(date#(DateField,'dd.mm.yyyy'),'DD-MM-YYYY')) as Date
Date(Alt(
Date#(DateField,'DD/MM/YYYY'),
Date#(DateField,'DD.MM.YYYY')
),'DD/MM/YYYY') as DateField
Hi,
use MM(capital) instead of mm(lower case)
mm-> denotes minutes
MM-> denotes Month
Kind Regards