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

Having two clauses in Set Analysis with > AND

Hi experts,

how can we add two clauses in set analysis with AND

For example:

sum({<PK = {5}>} Debit)

how can we add TransType = 'RC' in above mentioned expression in set analysis ?

Help required please.

2 Replies
Not applicable
Author

Try this:

sum({<PK = {5}, TransType = {'RC'}>} Debit)

miguelbraga
Partner - Specialist III
Partner - Specialist III

Do this:

sum({$<PK = {5}, TransType = 'RC'>} Debit)

Hope it helps you

Regards,

MB