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

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
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.

Labels (1)
1 Reply
Not applicable
Author

This should work:

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