Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Alternate state parent filter?

I'm calculating ticket volume differences (count of tickets in state A minus state B) in a bar chart (inherited state) based on week selections made in alternate states.  I now want to apply a selection for specific products but the alternate states don't appear to limit to the product select box (inherited state).  Am I doing something wrong?

1 Solution

Accepted Solutions
jerem1234
Specialist II
Specialist II

You'll have to add some set analysis to your expressions, so that they listen to the product selection in the inherited state. Something like:

sum({State1<Product=$::Product>}Tickets)

Find attached for an example.

Hope this helps!

View solution in original post

2 Replies
jerem1234
Specialist II
Specialist II

You'll have to add some set analysis to your expressions, so that they listen to the product selection in the inherited state. Something like:

sum({State1<Product=$::Product>}Tickets)

Find attached for an example.

Hope this helps!

Anonymous
Not applicable
Author

That immediately worked.  Thank you!