Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
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
Solved! Go to Solution.
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.
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.
Hi @AlanP514 ,
Try this:
Result_Col = calculate(distinct(name), filter(tablename,certificate="1 star")
If the solution helps, then please mark it has a solution. Thanks.
Regards,
TruptiS
That will not
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!
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 24 | |
| 22 | |
| 21 | |
| 20 | |
| 14 |
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 41 | |
| 33 | |
| 31 |