Does anyone knows how to change the format of the filtered date?
See attached file for the sample
Date
Votes
5 comments
-
Jet Reports Historic Posts Official comment Since $D$3 is no longer a date field, I'd refer to $C$2.
Does this work for you?="LAST YR. " & NP("format";$C$2;"mmm 'yy")
P.s. Beware that Sheet2!B1 will become Sheet2!C2 if you run the report as Jet will claim Column A / Row 1 with Auto+Hide. So, you need to change the reference in Sheet1!$C$2. -
Jet Reports Historic Posts So..in short, I really cannot change ..1/31/2013 into the format I wanted?
-
Jet Reports Historic Posts Since $D$3 is no longer a date field, I'd refer to $C$2.
Does this work for you?="LAST YR. " & NP("format";$C$2;"mmm 'yy")
P.s. Beware that Sheet2!B1 will become Sheet2!C2 if you run the report as Jet will claim Column A / Row 1 with Auto+Hide. So, you need to change the reference in Sheet1!$C$2.
Correction with the code:
Should be="LAST YR. " & NP("format",$C$2,"mmm 'yy")
I already tried this and it worked fine. But I hope I will get a clear answer about the changed format for ..01/01/2012 to jan '12
;) -
Jet Reports Historic Posts In our country we use ; as symbol between Excel arguments instead of ,.
My bad, I wasn't paying attention to your settings.
You want to format a date. The datefilter you create in D3 is not a date, therefore the change to C2. -
Jet Reports Historic Posts Thank you ;)
Please sign in to leave a comment.