Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have a report that I pull for safety events. Sometimes the events are reviewed by multiple people. When I pull the report from the system it lumps all reviewers together in a cell. Each reviewer is from different services. I am to create a report that shows how many reviews were completed by each reviewer without having to do a lot of manual work in Excel before importing to PowerBI.
Does anyone have any experience with this?
Solved! Go to Solution.
Let's assume that you have such data:
EventName | ReviewersString |
Christmas | Johnson, Reviewer Guy / Anderson, Reviewer Gal / Random, Reviewer Person |
Halloween | Johnson, Reviewer Guy / Anderson, Reviewer Gal |
Dummy Summer Event | Anderson, Reviewer Gal |
Dummy Event | John, Snow |
Step 1. Split ReviewersString by " / " into rows.
Create a measure and use it 🙂
Number of reviews = COUNTROWS(RevTable)
Proud to be a Super User!
Let's assume that you have such data:
EventName | ReviewersString |
Christmas | Johnson, Reviewer Guy / Anderson, Reviewer Gal / Random, Reviewer Person |
Halloween | Johnson, Reviewer Guy / Anderson, Reviewer Gal |
Dummy Summer Event | Anderson, Reviewer Gal |
Dummy Event | John, Snow |
Step 1. Split ReviewersString by " / " into rows.
Create a measure and use it 🙂
Number of reviews = COUNTROWS(RevTable)
Proud to be a Super User!
Also, I have over 180 reviewers... so it can be 1 person, or multiples and not always the same names. 😕
Johnson, Reviewer Guy / Anderson, Reviewer Gal / Random, Reviewer Person
Hi,
In the Query Editor, select that column and use the split Column > By delimiter. In Advanced Options, select Rows.
Get the number of "/" and +1 to it to get the total number of reviewers.
Here's someone with a similar question, but they needed the number of hyphens.
https://community.fabric.microsoft.com/t5/Desktop/How-to-count-a-specify-letter-in-a-string-in-power...
so add a new column like this in Power Query:
List.Count(Text.PositionOf([Reviewers],"/",Occurrence.All )) + 1
(This assumes there is always at least 1). If that's not the case, you will need additional steps (perhaps an intermediary step with a new column, or another column after this with IF/THEN logic, or more complex power query statement to begin with) to account for the situation where the [Reviewer] field is totally blank and should be zero
Hi thank you,
But I am looking for how many each reviewer completed. Not how many reviewers reviewed a certain event.
https://community.fabric.microsoft.com/t5/Power-Query/Column-with-comma-separated-values-to-list/td-...
Could you follow this post except use "/" instead of comma then remove trailing and leading white space?
Then add a column with the value "1" and summarize it by name in your visual?
Hi, do you have any example data to show how the names appear together in a cell?
Johnson, Reviewer Guy / Anderson, Reviewer Gal / Random, Reviewer Person
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.