Forum Discussion
XaviOV
3 years agoHelper V
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!
please try
Column1 =
MAXX (FILTER (
CALCULATETABLE ( 'Table', ALLEXCEPT ( 'Table', 'Table'[ExecutionReference] ) ),
'Table'[DataKey] IN { "HP", "GAF" }
),'Table'[DataKey]
)