Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
briwhiz23
Regular Visitor

Splitting data with overlapping values and then collating into a chart

Hi all. I have a Power BI dashboard that pulls in data from Airtable. In our tables (we have about 15), we have a "Responsible" field where you can tag one or more people. It pulls into Power BI like this, for example: 

briwhiz23_1-1731602770122.png

You can see that "Brid" is included in rows with another person and also by themselves.

 

GOAL: We'd like to see each person's workload, so we need to split the names out, then collate them somehow.

 

When I pull the data as-is into a chart, it obviously doesn't separate the names by delimiter, and you can see where the overlap is (highlighted in green, and highlighted in yellow). Hence, we're unable to get a quick look at how much each person has on their plate.

briwhiz23_2-1731603147078.png

 

When I delimit them and split them into separate columns, this is how it looks (not exactly better than the previous option). 

briwhiz23_0-1731602613767.png

 

Any idea how I can separate these cells by delimiter and then re-combine the columns to get an accurate count of task by user without creating new rows? 

 

Thanks in advance for any help!

 

2 ACCEPTED SOLUTIONS
PhilipTreacy
Super User
Super User

@briwhiz23 

 

You have to create new rows to do this.  Creating new rows will mean your data is in a tabular format which is what you need for analysis.

 

In Power Query when you split the names by delimiter, in the Advanced options choose to create new rows, rather than columns

 

PhilipTreacy_0-1731628994956.png

 

PhilipTreacy_1-1731629111462.png

 

Regards

 

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


View solution in original post

Anonymous
Not applicable

Thanks for the reply from PhilipTreacy , please allow me to provide another insight: 
Hi  @briwhiz23 ,

I created some data:

vyangliumsft_0-1731638370309.png

Here are the steps you can follow:

1. You can create a calculation table containing the data needed for the X-axis of the clustered column chart.

vyangliumsft_1-1731638370310.png

2. Create measure.

Measure =
var _vtable=
DISTINCT(
FILTER(
    CROSSJOIN(
        'Table','Group_Table'),
  FIND( 'Group_Table'[Group],'Table'[ASSIGEND TO],,BLANK()<>BLANK())))
return
COUNTX(
    FILTER(
        _vtable,[Group]=MAX('Group_Table'[Group])),[ASSIGEND TO])

3. Result:

vyangliumsft_2-1731638412535.png

 

 

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

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Thanks for the reply from PhilipTreacy , please allow me to provide another insight: 
Hi  @briwhiz23 ,

I created some data:

vyangliumsft_0-1731638370309.png

Here are the steps you can follow:

1. You can create a calculation table containing the data needed for the X-axis of the clustered column chart.

vyangliumsft_1-1731638370310.png

2. Create measure.

Measure =
var _vtable=
DISTINCT(
FILTER(
    CROSSJOIN(
        'Table','Group_Table'),
  FIND( 'Group_Table'[Group],'Table'[ASSIGEND TO],,BLANK()<>BLANK())))
return
COUNTX(
    FILTER(
        _vtable,[Group]=MAX('Group_Table'[Group])),[ASSIGEND TO])

3. Result:

vyangliumsft_2-1731638412535.png

 

 

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

PhilipTreacy
Super User
Super User

@briwhiz23 

 

You have to create new rows to do this.  Creating new rows will mean your data is in a tabular format which is what you need for analysis.

 

In Power Query when you split the names by delimiter, in the Advanced options choose to create new rows, rather than columns

 

PhilipTreacy_0-1731628994956.png

 

PhilipTreacy_1-1731629111462.png

 

Regards

 

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.