Forum Discussion
Yonah
Helper II
3 years agoCreat Tabel with Value from Meassure
Hi, I am trying to create a new table with Dax. In this Table, I want the Value from Measures. So the table should look like this: 5 Value from Measuere 'Export'[05 Total_Top_5] 10 ...
- 3 years ago
Use
Tabelle = CALCULATETABLE( { ( "5", [05 Total_Top_5] ), ( "10", [07 Total_Top_10] ) }, FILTER( KEEPFILTERS( VALUES( 'N1'[N1] ) ), 'N1'[N1] = 0 ), FILTER( KEEPFILTERS( VALUES( 'N2'[Parameter] ) ), 'N2'[Parameter] = 0 ) )