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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
rittermd
Master
Master

Set Analysis Help

I have a main sheet with a bunch of metrics that I only want to change when the filter AEName is chosen.  All other filters should be ignored.

This is how I coded one of the expressions. 

Sum({1<Metric_Name={'Armored'},GoalMonth={"<=$(vCurrMonth)"},AEName=P(AEName)>}Target)

It works perfectly when I select an AEName.  All other filters are ignored. 

The problem I am having is when no AEName is selected (all data).  When I click on other filters the values do change and I don't want this to happen.

I am not sure what I need to add or change in my expressions to make sure that AEName is the only filter that ever changes the values.

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Try

Sum(

     {

          1<Metric_Name={'Armored'},

               GoalMonth={"<=$(vCurrMonth)"},

               AEName=$::AEName

   >}Target)

View solution in original post

2 Replies
MK_QSL
MVP
MVP

Try

Sum(

     {

          1<Metric_Name={'Armored'},

               GoalMonth={"<=$(vCurrMonth)"},

               AEName=$::AEName

   >}Target)

agigliotti
MVP
MVP

let's try using the below expression:

Sum({1<Metric_Name={'Armored'},GoalMonth={"<=$(vCurrMonth)"},AEName=$::AEName >}Target)

The Power of shining a light on the dark side of your data.
Follow me on my LinkedIn | Know Gamma Informatica at gammainformatica.it