Forum Discussion

XaviOV's avatar
XaviOV
Helper V
3 years ago
Solved

Create a new column with a multipe value

Hi,   I have a table  and I want to do it, how can I do it in DAX   Now:   Future:   Thanks!
  • tamerj1's avatar
    tamerj1
    3 years ago

    XaviOV 

    please try

    Column1 =
    MAXX (

    FILTER (

    CALCULATETABLE ( 'Table', ALLEXCEPT ( 'Table', 'Table'[ExecutionReference] ) ),

    'Table'[DataKey] IN { "HP", "GAF" }
    ),

    'Table'[DataKey]

    )