Forum Discussion
Anonymous
5 years agoNot applicable
Create a new table based on filters
I have and e-learning data with duplicates across the different columns just like this First Name Last Name Course title Status Completion date James Paul Course A Registered Jame...
- Anonymous4 years ago
Thanks for your response.
I was able to work around it using power query, relationships and DAX. The data was more complex than I explained.
amitchandak
5 years agoSuper User
Anonymous , one of the two ways
summarize(filter(Table, Table[Status] ="Completed" ), [first name], [Last name], [course], [Status] )
or
calculatetable(Table, filter(Table, Table[Status] ="Completed" ))
- Shadow_BN5153 years agoNew Member
This worked fantasic, just what I was looking for. Thanks for the help
- StefD1 year agoFrequent Visitor
Works for me very well too. Is there an opition to have 2 ctriterias listed? as .... {"mm" , "xx"} ... is not working form me. Thanks in advance.
- StefD1 year agoFrequent Visitor
SOLVED like this:
summarize(filter(Table, Table[Column] = "abc" || Table[Column] = "123") )