Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
jjking58
Contributor III
Contributor III

Exclude(E) function

Can someone tell me why this would not work?

I've researched this on the community site and everything looks correct, but i'm not getting any results in my table

Thanks in advance

QlikExcl.PNG

5 Replies
sergio0592
Specialist III
Specialist III

Try with :

sum( {$<fYear =,CustomerName= E({1<ProductName={‘BASEBALL PRO’}>})>} PartsAmt) +

sum( {$<fYear =,CustomerName= E({1<ProductName={‘BASEBALL PRO’}>})>} EqupAmt) +

sum( {$<fYear =,CustomerName= E({1<ProductName={‘BASEBALL PRO’}>})>} LaborAmt) +

vishsaggi
Champion III
Champion III

Try this:

= Rangesum(0, Sum({<fYear=, CustomerName = E({1< ProductName = {'BASEBALL PRO'}) >} PartsAmt),

                          Sum({<fYear=, CustomerName = E({1< ProductName = {'BASEBALL PRO'}) >} EqupAmt),

                          Sum({<fYear=, CustomerName = E({1< ProductName = {'BASEBALL PRO'}) >} LaborAmt)

                     )

sunny_talwar

You are missing closing >} within e()

jjking58
Contributor III
Contributor III
Author

I tried adding the closing >} and have the same results

QlikExcl.PNG

jjking58
Contributor III
Contributor III
Author

I found the problem i changed sum({$ to sum({1 and the number appeared. I was excluding customers based on the current selection

Thanks both for the quick response