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

Expressions in charts!

=Avg({<[E_D Code]={'10'},[E_D Code]={'45'} >}Amount)

The above is only showing me for EDCode 45 and not EDCode 10. How do I display both?

1 Solution

Accepted Solutions
buzzy996
Master II
Master II

use this,

=Avg({<[E_D Code]={'10','45'} >}Amount)

View solution in original post

3 Replies
buzzy996
Master II
Master II

use this,

=Avg({<[E_D Code]={'10','45'} >}Amount)

Not applicable
Author

Avg({<[E_D Code]={'10','45'} >}Amount)


should work.

basically

[E_D Code]={'10','45'} in set Analysis is OR condition.

buzzy996
Master II
Master II

can u mark as correct if ur happy with tht sol