Custom Groups

L

Lynn

Is it possible to create custom groups in an Access 2003 report? For
example, I have a report that is grouped by Category. I would like to
specify that Cat 1 & 2 should be lumped together as one group & Cat 3 is a
group of its own. How can I achieve this?
 
L

Lynn

Thanks Karl. This worked!

KARL DEWEY said:
In your query that feeds the report use a calculated field with IIF statement
--
SortCat: IIF([Category] = 1 Or [Category] = 2, 1, 2)
--
KARL DEWEY
Build a little - Test a little


Lynn said:
Is it possible to create custom groups in an Access 2003 report? For
example, I have a report that is grouped by Category. I would like to
specify that Cat 1 & 2 should be lumped together as one group & Cat 3 is a
group of its own. How can I achieve this?
 

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