Boss wants his report changing again - need help quick!

G

Guest

Hi there
I have a report which lists the number of orders we have against customers.
The 'order type' is D, D*, P, P*,C or C*.
At the bottom of the report I have a total whic say s the total number of
orders is .. using the following =IIf([HasData],Count(Qty]),0)
My boss wants it sepearating to it shows as
The total number of D, D* orders =
P, P* orders =
C, C* orders =

Any help would be greatly appriciated
baz
 
T

Tom Lake

baz said:
Hi there
I have a report which lists the number of orders we have against
customers.
The 'order type' is D, D*, P, P*,C or C*.
At the bottom of the report I have a total whic say s the total number of
orders is .. using the following =IIf([HasData],Count(Qty]),0)
My boss wants it sepearating to it shows as
The total number of D, D* orders =
P, P* orders =
C, C* orders =

Any help would be greatly appriciated
baz

You can group on just the first n letters of a field so that all the D's
would come out together regardless of the asterisk. Check the Sorting and
Grouping option of your report.

Tom Lake
 
D

Duane Hookom

Create a totals query based on a similar query as the main report. Use the
totals query as the Record Source of a subreport. Place the subreport in the
Report Footer section of the main report.

--
Duane Hookom
MS Access MVP


Tom Lake said:
baz said:
Hi there
I have a report which lists the number of orders we have against
customers.
The 'order type' is D, D*, P, P*,C or C*.
At the bottom of the report I have a total whic say s the total number of
orders is .. using the following =IIf([HasData],Count(Qty]),0)
My boss wants it sepearating to it shows as
The total number of D, D* orders =
P, P* orders =
C, C* orders =

Any help would be greatly appriciated
baz

You can group on just the first n letters of a field so that all the D's
would come out together regardless of the asterisk. Check the Sorting and
Grouping option of your report.

Tom Lake
 

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