Forum Discussion
bwelsh
9 years agoHelper I
DAX Calculated Table
I'm trying to create a calculated table based on a table with a colum for USER ID and EVENT ID (among others). I need to create a table showsing disting USER ID's for only specific EVENT ID's. ...
- 9 years ago
Hi bwelsh,
Please use the formula below to create new table.CALCULATED TABLE = DISTINCT( SELECTCOLUMNS(FILTER('Original Table', 'Original Table'[EVENTID] = "SPECIFIC EVENT ID"),"EVENTID",'Original Table'[EVENTID],"SPECIFIC EVENT ID",'Original Table'[SPECIFIC EVENT ID]))
Best Regards,
Angelia