Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
gireesh1216
Creator II
Creator II

NEED HELP

HI Friends,

I hava data like below table.

if id has "RED" status.overal status always RED.

if all GREEN then overal status GREEN

How do this in pivot table?

How to do this in front end in qlikview?

STATUS.png

8 Replies
shiveshsingh
Master
Master

try this as expression

aggr(if( Prov='GREEN' and Comp='GREEN' and Reco='GREEN','GREEN','RED'),ID,Application,Layer)

gireesh1216
Creator II
Creator II
Author

hello

Not working above expression.

Qrishna
Master
Master

1.PNG

Somehting like this?

gireesh1216
Creator II
Creator II
Author

Yes..How to do that...

On Wed, 25 Apr 2018, 11:29 pm Krishna Nagulapally, <qcwebmaster@qlikview.com>

Qrishna
Master
Master

PSA

sasiparupudi1
Master III
Master III

My be try

If(SubstringCount( aggr(Max(Prov)&','&Max(Comp)&','&Max(Reco),ID,Application,Layer),'RED')>0,'RED','GREEN')

puneetagarwal
Partner - Creator II
Partner - Creator II

Hi Gireeesh ,

Probably you can try this expression as well.

=if( Application='B' or Prov='Red'or Comp='Red' or Reco='Red','Red','Green');

Regards,

Puneet Agarwal

gireesh1216
Creator II
Creator II
Author

Working fine. But I am looking front end calculation in qlikview.