Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a field Role with values like
Tele India - Agent
Tele India - manager
SIT India - Manager
SIT India - Agent
Tele India Bangalore - Agent
..................
Here i want to sum the values in set analysis for only values where
Role is having India and Agent both
I have written exp like this
But i want to have India and Agent both in the same row in the field ROLE.
How can i search for multiple values in set analysis? (It should work as "And" condition as the row should have both India and Agent)
May be like this?
Or
May be this?
Load *, SubField(ROLE, ' ', 2) as ROLE_Country;
and expression should this?
Sum({<ROLE_Country = {'India'}>} Value)
Hi Anil,
Thanks for the reply.
I want to have search for both India and Agent in ROLE field, not only India.
And i want it in set analysis.
First you need to split into different variations and can be achieve same
May be like this?
Or
Thank you very much Tresesco.