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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi there,
I have a column of names in a table that looks like this:
Joe Blogs
John Smith
Sarah Person; John Smith
Joe Blogs
I want to be able to graph the count of each person, such that:
Joe Blogs: 2
John Smith: 2
Sarah Person: 1
However I can't manage to separate it when there are two names, so it looks like this:
Joe Blogs: 2
John Smith: 1
Sarah Person; John Smith: 1
Sarah Person: 1
How might I be able to do this without creating a new column etc?
Solved! Go to Solution.
Hi @Anonymous ,
Go to query editor>split columns :
And you will see:
Then remove blanks:(using replace values)
Finally create a measure as below :
Measure = COUNT('Table'[Name])
And you will see:
For the related .pbix file,pls see attached.
Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!
Hi @Anonymous ,
Go to query editor>split columns :
And you will see:
Then remove blanks:(using replace values)
Finally create a measure as below :
Measure = COUNT('Table'[Name])
And you will see:
For the related .pbix file,pls see attached.
Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!
@Anonymous , best id split the column in power query by rows
https://www.tutorialgateway.org/how-to-split-columns-in-power-bi/