Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a date field called Monthrecorded in myy format.How can I covert this into mmddyyy format.
Thanks in advance.
use
=(monthfieldname,'MM-DD-YYYY')
Regards.
Siva
I am getting the syntax error.can you tell me why?
Thanks.
Use the function
date(Monthrecorded ,'MMDDYYY')
Hi,
Try like this
=date(Date#('114', 'MYY'), 'MMDDYYYY' )
Regards,
Jagan.
Hello,
You can use below expression:
=Date(Date#(Monthrecorded,'MYY'),'MMDDYYYY')
Thanks,
Angad
Try this:
=Date(Date#(Monthrecorded,'MYY'),'MMDDYYYY')
Hi Aptha,
Please send me the sample data will try to give solution. May be your field is having the string data. that is what its showing the syntax error.