Combining of non-specified items into single group in Pivot chart

J

JackAtArcLight

Hi All:

I have a table that captures different types of Investments with 3
categories: Operating, Construction, Development.

I need to create a pivot chart showing the percentage of development
investments to all others. I am able to create a chart that gives a
percentage for each of the categories. I would just like to have a
development/NonDevelopment chart. Is there a way to group, or rather, how
would I accomplish this?

Thanks in advance for the help.
 
P

PieterLinden via AccessMonster.com

JackAtArcLight said:
Hi All:

I have a table that captures different types of Investments with 3
categories: Operating, Construction, Development.

I need to create a pivot chart showing the percentage of development
investments to all others. I am able to create a chart that gives a
percentage for each of the categories. I would just like to have a
development/NonDevelopment chart. Is there a way to group, or rather, how
would I accomplish this?

Thanks in advance for the help.

Jack,
the way I have solved this problem is to create a query that does the re-
categorization.

SELECT Investment, IIF([Category] NOT IN ("Operating", "Construction",
"Development"), "Other",[Category]), Quantity...
FROM src...

Then base your summary on this query, and you'll end up with 4 categories. O,
C, D, and Other.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top