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

Getting Rid of <> Series in Column and Bar Charts

Status
Not open for further replies.

Buckar00B0nzai

Technical User
Jun 17, 2009
50
US
I have a database (of course) that tracks services requests by technicians that complete them. I want to create a stacked bar chart that displays all of the technicians and the number of completed service requests - even if the technician has not completed any.

To accomplish this, I designed a query based on the main table that pulls: [Technician], [Service_Requested], [Status] = "Complete", and Count[Service_Requested]. Next, I designed a second query based on the first query that includes a table with each technician's name listed as a unique value. I linked the [Technician] field between the table and the query, and set the properties to pull all of the values from the table, and only those values from the query where the joined fields are equal. The result is great - all technicians are listed, only completed services and their counts are detailed, and there are null values (empty fields) for the technicians who have yet to complete work. However...

When I chart this baby I get a "<>" value in the legend. How do I fix this?

Thanks for your help in advance.

BB
 
TRANSFORM Sum([CountOfSERVICE REQUESTED]) AS [SumOfCountOfSERVICE REQUESTED] SELECT [Technicians] FROM [Services Complete by Technician Part 2 Query] GROUP BY [Technicians] PIVOT [SERVICE REQUESTED];

Does this help?
 



You might also post some representative data from your table.

Skip,
[sub]
[glasses]Just traded in my old subtlety...
for a NUANCE![tongue][/sub]
 
Try
Code:
TRANSFORM Sum([CountOfSERVICE REQUESTED]) AS [SumOfCountOfSERVICE REQUESTED] 
SELECT [Technicians] 
FROM [Services Complete by Technician Part 2 Query]   
GROUP BY [Technicians] 
PIVOT Nz([SERVICE REQUESTED],"NA");

Duane
Hook'D on Access
MS Access MVP
 
Alternatively, you might consider that the "<>" represents the quality (or the lack thereof) of the data, and review the data to understand the issue(s).

MichaelRed


 
but isn't this "Valid" information? The names can be forced into the dataset!



MichaelRed


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top