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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
feign3
Contributor
Contributor

Suppressing 0.00 currency values

I'm displaying data in a straight table in which I need to suppress rows with Quantity values of zero as well as Unit Price values that display as 0.00. The "Suppress Zero-Values" did not work for this so I've made the following entry in my dimension to hide rows with Quantity = 0, which works perfectly:

 =if([Transactions.Quantity]>0, [Customer.Sales Rep Full Name] , Null())

However, when I use the same logic with the Unit Price value, rows are not suppressed at all OR all rows are suppressed (depending on which method below is used).

The following does not suppress anything:

=if([Transactions.Unite Price]>0, [Customer.Sales Rep Full Name] , Null())

I have tried the following checking for NULL instead (incorrectly suppresses all rows):

=if([Transactions.Unit Price]<>Null(), [Customer.Sales Rep Full Name] , Null())

Also tried checking for NULL the following way, using "len" (incorrectly suppresses all rows):

=if(len([Transactions.Unit Price]>0), [Customer.Sales Rep Full Name] , Null())

 

Any other ideas on what I might try for this?

Labels (2)
1 Reply
_Gerardo_
Partner - Contributor III
Partner - Contributor III

Hello, could you please attach a sample version of your document? So we can take a look on it and solve your specific issue.