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...
- Anonymous5 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
Super User
5 years agoAnonymous , 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_BN515
3 years agoNew Member
This worked fantasic, just what I was looking for. Thanks for the help