Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear All,
i need to write not equal condition to filter dimensions in set analysis.
Now am using if condition so it take long time to load chart user get hesitate.
if(BasePrice<>Price,Supervisor)
i need to change this into set analysis
Kindly help to achieve this.
Thanks in advance
Regards
Siraj
Only({<BasePrice -= {'Price'}>}Supervisor)
Hi
It shows the "error in the Calculated dimension " error message.
Create calculated dimension as
aggr(Only({<Supervisor-={"=BasePrice=Price"}>}Supervisor),Supervisor)
or Expression
Only({<Supervisor-={"=BasePrice=Price"}>}Supervisor)
Let me know where you want to use it and how?
If you want to count, use formula suggested by
COUNT({<Supervisor = {"=BasePrice = Price"}>}Distinct Supervisor)
If you don't want Distinct, you can ignore it.