Access 2003
I am trying to derive the Quarter and two digit year from a date field
Logic: If the toCSHipDate is not empty then Ship:= toCSHipDate formatted as Q3 13 (Q# yy). If toCSHipDate is empty return a blank
I am trying to derive the Quarter and two digit year from a date field
Logic: If the toCSHipDate is not empty then Ship:= toCSHipDate formatted as Q3 13 (Q# yy). If toCSHipDate is empty return a blank
Code:
Ship: IIf((LEN([toCSHipDate]>1, ("Q" & Format(([toCSHipDate]),"q") & " " & Right(Year([toCSHipDate]),2)),""))