Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All,
I have a table with data as below
Product
AA
BB
CF
HG
Market
HG
IJ
KL
How do i select products where Product is NOT EQUAL to Market. My final result should be
Product
AA
BB
CF
HG
HG
IJ
KL
Check now
In script
where Not match(Product,'Market')
Or
where Not wildmatch(Product,'*Market*');
Or this
Where Product <> 'Market';
May be like this:
Sum({<Product -= {'Market'}>}Revenue)/Sum(TOTAL {<Product = {'Market'}>}Revenue)
stalwar1 Thanks for the quick suggestion.
But, in the Product column i would need to display only the Products without Market and this would be as a dimension.
That is exactly what my expression is going to do.
Dimension
Product
Expression
Sum({<Product -= {'Market'}>}Revenue)/Sum(TOTAL {<Product = {'Market'}>}Revenue)
I'm not sure but this formula doesn't work for me.
It calculates all the products and shows the total sum for each.
So, in this example it gives me 73%(730/1000) against each product.
Don't know, but this is working for me