Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Sum Of Field in Chart

Hi,

I have following data set in excel which i load in qlikview

TicketNoAssignmentGroupCreationDateResolveDate
T0001

Group1

12/12/201614/12/2016
T0002Group215/12/201617/12/2016
T0003Group319/12/201625/12/2016
T0004Group430/12/201602/01/2017

Ticket:

LOAD TicketNo,

     AssignmentGroup,

     CreationDate,

     ResolveDate,

FROM

[..\IncData.xlsx]

When i try to create a bar chart with dimension as AssignmentGroup and Expression as Sum(TicketNo) I get No Data.

How do i create a chart which shows ticket count per assignment group?

Thank you.

4 Replies
sunny_talwar

You can only Sum numeric data.... since TicketNo is not numeric (and you are looking to count), I would suggest using Count() function here....

Count(TicketNo)

satheshreddy
Creator III
Creator III

hi Su,

you are not able to perform sum() why because ticket no are alphanumeric sum function it do only numeric values.

you can use count of tickets based on group dimension.

Dimension : AssignmentGroup

Exp: count(TicketNo)  

Regards

Sathish

Not applicable
Author

use count(TicketNo)  instead of Sum(TicketNo)

saimahasan
Partner - Creator III
Partner - Creator III

As suggested by all, use Count(Ticket no).

If this satisfies your requirement then please mark it as answered.