NormalDate: CDate(Format(((DateValue("01/01/"+LTrim(Str(1900+Int([Your Field
Name]/1000))))+[Your Field Name]-Int([Your Field
Name]/1000)*1000))-1,"mm-dd-yy"))
Can someone help me add in and iff statement before this for null value?
I tried the formula below but kept getting an invalid argument error. If I removed the iif statement then it would run fine.
NormalDate: iif([your field value]<>"0",CDate(Format(((DateValue("01/01/"+LTrim(Str(1900+Int([Your Field
Name]/1000))))+[Your Field Name]-Int([Your Field
Name]/1000)*1000))-1,"mm-dd-yy")),0)
And how do I get the previous of the current max[your field name] or restrict that so if the max[your field name] not between 1/1/2009 and 1/31/2009 then the max of the [your field name] is what I want. Thanks.