Forum Discussion
jct999
Advocate II
6 years agoDAX :
Hi, I have a table with 3 columns : COUNTRY (string) LEVEL (integer) Quantity (integer) I want to set up a Pivot Table with : Line : COUNTRY Column : LEVEL Values : 3 measures : Measur...
lbendlin
Super User
6 years agoMeasure 2 =
var L=selectedvalue(table[Level])
return calculate(sum(Table[quantity]),table[Level]=L+1)