Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Pivot table issue ASAP

PFA

i dont want the values as mentioned in the screen but am getting the values because of formula.

i dont want values for target % for where group is Total

4 Replies
ashfaq_haseeb
Champion III
Champion III

Try like this

LOAD Group,

     Passed,

     Failed,

     if(isnum(Target%),Target%,'') as Target%,

     if(isnum(passed%),passed%,'') as passed%

FROM Table

Regards

ASHFAQ

perumal_41
Partner - Specialist II
Partner - Specialist II

Hi Venu

Try like below expression

if (Dimensionality ()=0,'NoData',target %)

Not applicable
Author

Hi perumal

Can u please  elobrate

perumal_41
Partner - Specialist II
Partner - Specialist II

Hi Venu

In expression tab put below code

if (Dimensionality ()=0,'NoData',target % calculation expression )