Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
Can any one please help me to convert the User_StartDate field into DD/MM/YYYY Format.
I have tried the below script but last 4 dates which are highlighted in red color was not converted into DD/MM/YYYY format. Please help me on this.
Thanks in advance
Hi!
Try to use something like:
if(Len(Trim(User_StartDate ))=8, [...alt...Date#(StartDate,'DD/MM/YY')...] ,
if(Len(Trim(User_StartDate ))=10, [...alt...Date#(StartDate,'DD/MM/YYYY')...] )
)