Forum Discussion
Anonymous
7 years agoNot applicable
Duplicate Table
I need to duplicate a table, with the exception that I want one of the columns to be filtered. I have a table that is pulled from a database. I can just created a duplicate of the table, but it l...
- Anonymous7 years ago
Anonymous -
In DAX, you can create a Calculated Table, like this:
New Table = FILTER(<original table>, [processed by] = "A")
Cheers!
Nathan
Anonymous
7 years agoNot applicable
Anonymous -
In DAX, you can create a Calculated Table, like this:
New Table = FILTER(<original table>, [processed by] = "A")
Cheers!
Nathan
- Anonymous7 years agoNot applicable
Anonymous - That is perfect. Thank you.