Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set Analysis Syntax

This does not work:

Count({$<RebateAmtReported={"=0"}>} DISTINCT TransactionID)

But this does:

Count({$<RebateAmtReported={"<>0"}>} DISTINCT TransactionID)

Why?

I'm trying to get a count of transactions w/rebates vs. transactions without rebates.

1 Reply
Not applicable
Author

This should work:

Count({$<RebateAmtReported={"0"}>} DISTINCT TransactionID)