This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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!
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 32 | |
| 25 | |
| 23 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 47 | |
| 27 | |
| 24 | |
| 19 |