Crystal X Cross Tab
Is there a way to summarize data for a multiple year range in the first column (ex: all sales prior to 2005) yet still summarize per year for years following 2005?
Ex: Sales in $ Column headers: <2005, 2006, 2007, 2008, 2009, 2010 Grand totals: Rows would 开发者_高级运维list individual sales person.
this is to consolidate info on one neat easy to print page
Not a problem:
First create a custom formula. It would look something like:
if {year}<=2005 then "2005 and older" else {year}
Group your crosstab by this new formula instead of by the year.
精彩评论