Forum Discussion

Yonah's avatar
Yonah
Icon for Helper II rankHelper II
3 years ago
Solved

Creat 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 ...
  • johnt75's avatar
    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 )
    )