Grouping - Help on How to Group Something

G

Guest

Hi, I have a query that provides the data I want to report on. I want to
group by the field [BudgetFee] - Group 1: if >24999, Group 2: >14999 and
<25000, Group 3: <15000. Then I'll do a total in the footer for each group.
I can't figure out how to set up the grouping. Any help appreciated. Thank
you.
 
G

Guest

Create a calculated field in your report query then group on that field.
SortGroup: IIF([DataField] >24999, 1, IIF([DataField] >14999 and
25000, 2, 3))
--
KARL DEWEY
Build a little - Test a little


Karin said:
Hi, I have a query that provides the data I want to report on. I want to
group by the field [BudgetFee] - Group 1: if >24999, Group 2: >14999 and
<25000, Group 3: <15000. Then I'll do a total in the footer for each group.
I can't figure out how to set up the grouping. Any help appreciated. Thank
you.
 
G

Guest

Exactly what I needed. Thank you.

KARL DEWEY said:
Create a calculated field in your report query then group on that field.
SortGroup: IIF([DataField] >24999, 1, IIF([DataField] >14999 and
25000, 2, 3))
--
KARL DEWEY
Build a little - Test a little


Karin said:
Hi, I have a query that provides the data I want to report on. I want to
group by the field [BudgetFee] - Group 1: if >24999, Group 2: >14999 and
<25000, Group 3: <15000. Then I'll do a total in the footer for each group.
I can't figure out how to set up the grouping. Any help appreciated. Thank
you.
 

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

Similar Threads


Top