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

Set analysis affected by selection criteria

Hi,

I am using a set analysis to calculate QTY.

COUNT({ $<flag={1,2}>}QTY)

The document has two selection fields one is date and other one is state.I don't want my set analysis to be affected by the 'state' selection.

Itemqty
Bags100
Bottles200

Please let me know how the set analysis needs to be modified that the qty values not gets changed by the State selection but can change by date selection.

Thanks....

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Hi,

you just need to clear the state selection within your set expression:

=COUNT({ $<flag={1,2}, state= >}QTY)

Regards,

Stefan

View solution in original post

2 Replies
swuehl
MVP
MVP

Hi,

you just need to clear the state selection within your set expression:

=COUNT({ $<flag={1,2}, state= >}QTY)

Regards,

Stefan

Not applicable
Author

Hi stefan,

Thank you so much for your help.It worked...