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

Reporting Data that is not there 1

Status
Not open for further replies.

JC442

MIS
Apr 19, 2004
34
0
0
US
The Report is grouped by Sales Territory and shows the number of Sales events in each territory. What is the best way to include Territories that do not have any events?
 
You could use a formula for the sales event which is like

if isnull({sales.event}) or {sales.event} = "" then "" else
{sales.event}.

Also if your using 2 tables i.e 1 for sales territory and 1 for sales events then you could use a left outer join on the field.

HTH
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top