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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
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)