Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
Kindly let me know, how create a date field using this information:
Week |
W30-18 |
Hi, try with this for fetch a date from your Week field :
=Date(Date#('01/01/'&right(Week,2),'DD/MM/YYYY')+mid(Week,2,2)*7,'DD/MM/YYYY')
Not really sure your intend, Perhaps this?
Load DateField,
'W' & Week(DateField)&'-'&Num(Year(DateField),'00') as NewField
From Table;
getting error no date feild
Hi, try with this for fetch a date from your Week field :
=Date(Date#('01/01/'&right(Week,2),'DD/MM/YYYY')+mid(Week,2,2)*7,'DD/MM/YYYY')
Its Correct
Hi Great