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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
nevilledhamsiri
Specialist
Specialist

Th way of excluding from showing in the pivot table!

Dear Expert guys!

I am crazy to learn every bit of thing that I find in the process. I am a learner & please take time to response to me.You all guys have been giving your helping hand  for every issue I forwarded.I am applying them in my work & learn more on them. Here as per the data given in the pivot table, I need to exclude records which do not have  sales against Refund premium. In other words all rows which only carries Refunds to be excluded. Please explain how i could do this step by step.

Thanks

Neville

1 Solution

Accepted Solutions
farru_scorpio
Contributor III
Contributor III

omkar is correct.

View solution in original post

4 Replies
Anil_Babu_Samineni

One way could be

If(Refund_Premium = Sales, Sum(Sales))

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Peter_Cammaert
Partner - Champion III
Partner - Champion III

Modify all expressions (except for Sum(Sales) itself) to check for Sum(Sales) > 0.

For example, the two visible columns could become (using placeholders as we cannot see what your expressions actually look like):

=IF(Sum(Sales) > 0, expressionRefund_Premium)

and

=IF(Sum(Sales) > 0, expressionSalesRatio)

When all expressions for a particular combination of dimension values return either 0 or NULL, that row will be suppressed by QlikView.

omkarvamsi
Creator
Creator

Hi ,

please try below expression in place of sum(sales)

if(sum(Sales)<>0,sum(Sales))


Regards

Om

farru_scorpio
Contributor III
Contributor III

omkar is correct.