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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Show only Month in Crosstab

Status
Not open for further replies.

qcman

Technical User
Jul 20, 2004
30
0
0
US
I am creating a crosstab that has 4 years of data (i.e 2009 to 2012).
I only want to show the results for January of each year.
A B C
2009 (Jan) (Jan) (Jan)
2010 (Jan) (Jan) (Jan)
2011 (Jan) (Jan) (Jan)
2012 (Jan) (Jan) (Jan)
 
Create a formula like this and use it for your summary field:

if month({table.date})=1 then
{table.value}

Add your row and column fields as usual.

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top