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: 
Not applicable

How to do an Absolute Count

Hi All,

I'm currently developing a dashboard that is requiring an total absolute count of headcount relative to what is selected.  Below is an example.

The two tables are joined by User_Id

If I select Jan_2012 I get the following results.

Org_table:Ticket_table:
User_IdBus_UnitUser_IdMonth_YearTicket_Id
Usr1BU1Usr1Jan_2012Tkt1
Usr2BU1Usr2Feb_2012Tkt2
Usr3BU2Usr3Feb_2012Tkt3
Usr4BU2Usr4Feb_2012Tkt4
Usr5BU2Usr5Feb_2012Tkt5
Count (User_Id)Count (Ticket_Id)
Result11
Desired Result51

If I select BU1 I would get a count of 2 and ticket count of 2.

I'm basically trying to do a count on the User_Id field within the Org_table regardless of the associative records of the Ticket_table

Thanks for any help or suggestions.

2 Replies
Not applicable
Author

Try Count({1} User_Id)

Not applicable
Author

When I select BU1 I get 5 when I'm looking to get 2.