Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Expterts,
I want to exclude some fixde valuse of column from expression.How can I achive this.
I have tried this sum( {$<~[Country] = {*"City of New York"*}>} Sales) which is mentioned in Help.
But this is not working.
Hi,
Try this
sum( {$<[Country] -= {'City of New York'}>} Sales)
Or
sum( {$<[Country] ={'*'}- {'City of New York'}>} Sales)
Or
sum( {$<[Country] -= {"City of New York"}>} Sales)
sum( {$<Country= {“*”} – {"*City of New York*"}>} Sales )
Hi,
Try this
sum( {$<[Country] -= {'City of New York'}>} Sales)
Or
sum( {$<[Country] ={'*'}- {'City of New York'}>} Sales)
Or
sum( {$<[Country] -= {"City of New York"}>} Sales)
Use -= .... In set Analysis -= means not equal to....
SUM({<Country -= {'UK'}>}Sales)
will give you SUM(Sales) for all countries except UK
Thanks Rakesh.