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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Expression error

I have to show the list of customers with more than one invoice on the same day, I am able to show that by using the below expression

if(count({<datekey={'20180601'},CustomerCode>} DISTINCT InvoiceNumber)>1, CustomerName)

I need the TotalInvoiceAmount, but if am adding this column it is showing all the customers.

Labels (1)
10 Replies
sasiparupudi1
Master III
Master III

Change the expression to

If(Column(1)>=2,sum(TotalInvoiceAmount))

or

If(Count>=2,sum(TotalInvoiceAmount))