Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have two Dimensions in a Table
City and State
State of course is dependent of City
When a City is selected how to obtain the sum of the selected state (I need to calculate a percent) ?
I need this in a KPI
ie , modify Sum({$}[total_sales])
thanks
May be this?
Num(Sum({$<State=P(State)>} total_sales), '#,#0%')
Or this
Sum({$<City, State = p(State)>} [total_sales])
Thanks !