If you’re new to Qlik Sense, start with this Discussion Board and get up-to-speed quickly.
I am trying to find the number of customers whose profit percentage is more than 50%
Basically, count the number of customers whose (Profit/Total) > 50%
What I tried is as follows but did not work:
SUM(Aggr(IF(Profit/TotalSale>0.5,1,0),Customer))
Suggestions please.
Might make sense to throw a distinct in there also
Count(DISTINCT {<customer = {"=Sum(Profit)/Sum(TotalSale) > 0.5"}>} customer)
Try as follow:
Count({<customer= {"=sum(Profit)/sum(TotalSale>0.5"}>} customer)
Hi,
Small correction in Omar expression:
Count({<customer= {"=sum(Profit)/sum(TotalSale)>0.5"}>} customer)
what have u corrected?
the missing ) in sum(totalSale) ?
Might make sense to throw a distinct in there also
Count(DISTINCT {<customer = {"=Sum(Profit)/Sum(TotalSale) > 0.5"}>} customer)