Forum Discussion
Return unique column text values
Need help , which Dax will help to fetch the unique name from name column and condition Should be Certification level should be 1
The above Attached file is i applied it is returning error
please help me
Hi AlanP514
Try this dax expression, it will return a table with unique name where level="1 Star".
Table_unique_name = CALCULATETABLE(DISTINCT('Table'[Name]),FILTER('Table','Table'[Level]="1 Star"))Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
4 Replies
- YukiKImpactful Individual
You should be get the result with DAX like the following:
Your Measure = CALCULATETABLE( VALUES(CertificationName), YourColumn in { "YourValue" } )Note, this will return a table.
Hope this helps! - AlanP514Post Patron
That will not
- v-xiaotangCommunity Support
Hi AlanP514
Try this dax expression, it will return a table with unique name where level="1 Star".
Table_unique_name = CALCULATETABLE(DISTINCT('Table'[Name]),FILTER('Table','Table'[Level]="1 Star"))Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.