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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikcheepirishe
Creator
Creator

Exclude a dimension field

I have a field KPI in that I have Actual and planned and

other field name is PARTICULARS I just want to exclude Qlik filed from PARTICULARS

i.e. KPI--> Actual--> PARTICULARS--> 'Qlik'

Chart condition :

=if(KPI LIKE 'Actual'

and

PARTICULARS<> 'Qlik',(PARTICULARS),PARTICULARS)

However It is excluding both in Actual as well as in planned

Labels (1)
2 Replies
tresB
Champion III
Champion III

Try like:

=if(KPI LIKE 'Actual' and PARTICULARS<> 'Qlik',PARTICULARS,

          if(KPI like 'Planned', PARTICULARS))

its_anandrjs
Champion III
Champion III

This way also

=if( Match(KPI,'Actual') and NOT Match(PARTICULARS,'Qlik') ,PARTICULARS,

  if( Match(KPI,'Planned'), PARTICULARS ) )

Or share the output for this with sample.