Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

CASE ISSUE

Hi All,

I have a data as shown below

PRODUCTPAYMENT_TYPESTATUSVALUES
TTCCCTIER165
ASDCASHTIER234
DFDCCTIER154
VGFDCTIER332
BGHCASHTIER534
NGTONLINETIER656
ERTCCTIER745
FDVCCTIER456
FDEDCna67
JKLCASHna45
OPIONLINETIER245

1) I have created a pivote table expression (=SUM(VALUES)

2) I have all the above information in the pivote table.

Issue: For few products (ASD & DFD I want the "STATUS" as null and for rest products it shold reflect from the data

Thanks in advance...

Regards,

KK

3 Replies
alexandros17
Partner - Champion III
Partner - Champion III

STATUS is a dimension so write in the dimension (Use Add Calculated Dimension):

If(STATUS='ASD' or STATUS='DFD', Null(), STATUS)

If you do not want to see null values check the exclude null values box

Let ,me know

lironbaram
Partner - Master III
Partner - Master III

if this a an expression you could use

if(match(PRODUCT,'ASD','DFD')=0,STATUS)

if it a calculated dimension you could use

aggr(if(match(PRODUCT,'ASD','DFD')=0,STATUS),PRODUCT,PAYMENT_TYPE)

bbi_mba_76
Partner - Specialist
Partner - Specialist

Hi,

maybe adding a calculated dimension

=if(match(PRODUCT,'ASD','DFD')<=0, STATUS)