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

Exclude in Set Analysis

Hi

I want to exclude specific GL Codes from Invoice Amount.

For e.g.

sum({$<[GL Code]=E({'ABC',XYZ'})>}[Invoice Amount])

Any idea how I can achieve this?

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try

=sum({$<[GL Code] -= {'ABC',XYZ'} >}[Invoice Amount])

and ignore the bug in the expression editor highlighting the minus equal as error.

View solution in original post

2 Replies
swuehl
MVP
MVP

Try

=sum({$<[GL Code] -= {'ABC',XYZ'} >}[Invoice Amount])

and ignore the bug in the expression editor highlighting the minus equal as error.

Not applicable
Author

Worked. Thanks