Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
In Pie chart I am getting total value though I removed Null from dimension. Example
CITY ,COUNTRY,sales ,sum(total sales)
DUBAI , UAE ,10, 80
ABUDHABI,UAE,30,80
SHARJAH,UAE,30,80
-,UAE,10,80
If I remove Null I have to get total as 70 not 80 .If I use expression sum(total sales).
Can anyone suggest the solution to get 70.
Perhaps this
sum({<CITY-={"=null()"}>}total sales)
Or
sum({<CITY-={"=Len(CITY)=0"}>}total sales)
@Rajkumar try below set expression
=sum(TOTAL {<CITY={"*"}>} sales)