Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
Anybody help me for date conversion. Any useful document?
In my case I am unable to create quarter.
Sample attached..
Try it with ceil(month(date) / 3) as quarter.
- Marcus
Ceil(Month([ur field])/3) As Quarterly,
I get null value, somehow
Thanks Marcus
Hi Shiva again null value for attached QV
Thanks
Replace date with your date-fieldname and make sure that it is really a numeric date:
ceil(month(YourDateField) / 3) as quarter
- Marcus
Marcus
I needed to change formula as
ceil
(month(Date(Date#(vDate,'DD-MMM-YY'), 'MM/DD/YY')) / 3)
Hi,
Check the attached file
For quarter conversion write like
'Q'&Ceil(Num(Month(Date(Date#(vDate,'DD-MMM-YY'), 'MM/DD/YY')))/3)
Regards
Anand
Hi Shiva
I needed to change formula as
ceil
(month(Date(Date#(vDate,'DD-MMM-YY'), 'MM/DD/YY')) / 3)
Thanks for your suggestion and time
Marcus; Thanks for your suggestion and time