Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
In pivot table, I'm trying to write the following expression
SUM({<[Cyence User Status] <> {'Disabled'}>}[Cyence Credit Approval Limit]) , but the system says error in modifier. But when I write,
SUM({<[Cyence User Status] = {'Disabled'}>}[Cyence Credit Approval Limit])
it works fine.
Can someone please help me with not equal to expression.
Thank you in advance.
Regards,
Adi
SUM({<[Cyence User Status] -= {'Disabled'}>}[Cyence Credit Approval Limit])
the <> does not work in the set analysis use "-=" instead
SUM({<[Cyence User Status] -= {'Disabled'}>}[Cyence Credit Approval Limit])
the <> does not work in the set analysis use "-=" instead
Thanks Ramon!!!