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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

Labels (1)
11 Replies
t_chetirbok
Creator III
Creator III

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

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

t_chetirbok
Creator III
Creator III