Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have field '201305'.
I would like to derive a Reporting Date ( can be start daet of the month) from the above .
How can i get it.
Thanks
Thejo.
then try like :
date#( YourDateField, 'YYYYMM')
or even you can use date function to get your desired format out of this like :
Date(date#(YourDateField, 'YYYYMM') , 'DD-MM-YYYY')
your requirement is not very clear to me. if your '201305' is a date of format yyyymm then you can derive the date like :
date#('201305', 'YYYYMM')
I have a column where i have the month year in the format of YYYYMM Like 201305.
I need to derive the date from this field.
then try like :
date#( YourDateField, 'YYYYMM')
or even you can use date function to get your desired format out of this like :
Date(date#(YourDateField, 'YYYYMM') , 'DD-MM-YYYY')