Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
mario-sarkis
Creator II
Creator II

If condition in set analysis

hey all ,

i have a main talbe that contain "date Name and Title" as

Date

first field   Name

second field   Title

is related to two table

i need to calculate the sum of points if TITLE: RM (from the first table) and the sum of [Br Points] if TITLE:ABM Retail (from the second table) and if no selection show the sum of two

hope you can help

REgards

11 Replies
t_chetirbok
Creator III
Creator III

if(Concat(DISTINCT Title)='RM',sum(Point),

     if(Concat(DISTINCT Title)='ABM',sum([Br Point])))