This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.
hi
i have a column Issues using which i have to show all the issues in a graph
i want to consider all the issues starting with serial at didderent loaction as 1 issue
Solved! Go to Solution.
Hi @Anonymous ,
Here are the steps you can follow:
1. Create calculated column.
new =
IF(CONTAINSSTRING('Table'[column],"Serial at different location"),"Serial at different loaction",'Table'[column])
2. Create measure.
count = COUNTAX(FILTER(ALL('Table'),'Table'[new]=MAX('Table'[new])),'Table'[new])
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Here are the steps you can follow:
1. Create calculated column.
new =
IF(CONTAINSSTRING('Table'[column],"Serial at different location"),"Serial at different loaction",'Table'[column])
2. Create measure.
count = COUNTAX(FILTER(ALL('Table'),'Table'[new]=MAX('Table'[new])),'Table'[new])
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , second part is not clear ,
Create a measure
calculate(countrows(Table), filter(table, left([column],6) ="Serial" && Search("Location",[Column],,0) >0))
hi amit
i have used your measure but it is still showing the division of serial at different location.
i just want to show all the serial at different location as one
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 |
|---|---|
| 23 | |
| 21 | |
| 21 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 55 | |
| 53 | |
| 45 | |
| 26 | |
| 24 |