Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Evgenij
Contributor
Contributor

Count if Value exists in Table

Hello all,

I am new to Qlik and trying to create a report where tickets are only counted if the ticket group exists in another table.

Group_ID

My_Groups
1Group_1
2Group_2

 

Ticket_IDTicket_Group
123Group_6
234Group_2
345Group_4
456Group_3

 

Tried to solve it with "match" but that doesn't work.

 

=if(
     match(Ticket_Group, My_Groups), 
     count(distinct(Ticket_ID))
   )

 

Does anyone have a suggestion for me on how to solve this?

 

br, Evgenij

 

3 Replies
rubenmarin

Hi  @Evgenij, there is an Exists() function that can check if any value exists in another field, and it will be better if you flag those records in script.

To flag records add a field in tickets table as: If(Exists('Ticket_Group', My_Groups, 1,0) as isExistingGroup

Then for count you only need: Count({<isExistingGroup={1}>} Ticket_ID)

Evgenij
Contributor
Contributor
Author

Hello Ruben,

 

i'm getting "Field" 'My_Groups' not found"-Error if i try to flag the data like suggested by you.

rubenmarin

Hi, that message is telling you that the source table doesn't has any field with that name, use the name of the field on the source table.