Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Crosstab help with suppress

Status
Not open for further replies.

fmrock

Programmer
Sep 5, 2006
510
0
0
US
Hey Everyone,

I have a cross tab that has Jan-Dec as the column headers and years as the rows.

However, my data comes back with Jan 2011-Mar-2012. But Apr-Dec 2012 still show zeros. I do not want to suppress zeros, because I could have real zero values in my data. I only want to suppress data if the Month and year is greater than my end date in my report (AKA future dates...)

Any ideas or suggestions?
 
I figured out this will supress the whole row

GridRowColumnValue("@Year") = "2012"

I want to suppress 2012 and everything after March....
 
This works...

GridRowColumnValue("@Year") = replace(totext(year({SPNAME;1.EndDate}),0),",","")
AND GridRowColumnValue("SPNAME;1.Month_Name") > month({SPNAME;1.EndDate})
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top