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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Merging Lines

darrenvermaak_0-1720802328170.png

Hello, Could someone tell me if and how I can merge these lines together to be only three lines? I want to keep all the companies that have X number of deals in one line with all the companies only showing if I hover over the selected line.

Thanks and kind regards,

Darren

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi,@Anonymous 

I am glad to help you.  

According to your description, you want to merge these lines together to be only three lines? 

 

If I understand you correctly, then you can refer to my solution. 

 

First you need to create a table for the corresponding Deals, remembering to establish a relationship for both tables: 

vfenlingmsft_0-1721027686734.png

 

vfenlingmsft_1-1721027686737.png

Then New Column: 

vfenlingmsft_2-1721027708363.png

 

 

MergeCompany = 
SWITCH (
    TRUE (),
    'Table1'[Deals] = 3,
        CONCATENATEX (
            FILTER ( 'Table1', 'Table1'[Deals] = 3 ),
            'Table1'[Company],
            ","
        ),
    'Table1'[Deals] = 2,
        CONCATENATEX (
            FILTER ( 'Table1', 'Table1'[Deals] = 2 ),
            'Table1'[Company],
            ","
        ),
    'Table1'[Deals] = 1,
        CONCATENATEX (
            FILTER ( 'Table1', 'Table1'[Deals] = 1 ),
            'Table1'[Company],
            ","
        )
)

 

Finally drag the newly created Column field into Tooltips and this is the final result: 

vfenlingmsft_3-1721027708377.png

 

I hope my suggestions give you good ideas, if you have any more questions, please clarify in a follow-up reply.


Best Regards,
Fen Ling,


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

5 REPLIES 5
Anonymous
Not applicable

Hi,@Anonymous 

I am glad to help you.  

According to your description, you want to merge these lines together to be only three lines? 

 

If I understand you correctly, then you can refer to my solution. 

 

First you need to create a table for the corresponding Deals, remembering to establish a relationship for both tables: 

vfenlingmsft_0-1721027686734.png

 

vfenlingmsft_1-1721027686737.png

Then New Column: 

vfenlingmsft_2-1721027708363.png

 

 

MergeCompany = 
SWITCH (
    TRUE (),
    'Table1'[Deals] = 3,
        CONCATENATEX (
            FILTER ( 'Table1', 'Table1'[Deals] = 3 ),
            'Table1'[Company],
            ","
        ),
    'Table1'[Deals] = 2,
        CONCATENATEX (
            FILTER ( 'Table1', 'Table1'[Deals] = 2 ),
            'Table1'[Company],
            ","
        ),
    'Table1'[Deals] = 1,
        CONCATENATEX (
            FILTER ( 'Table1', 'Table1'[Deals] = 1 ),
            'Table1'[Company],
            ","
        )
)

 

Finally drag the newly created Column field into Tooltips and this is the final result: 

vfenlingmsft_3-1721027708377.png

 

I hope my suggestions give you good ideas, if you have any more questions, please clarify in a follow-up reply.


Best Regards,
Fen Ling,


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

darrenvermaak_0-1721058466189.png

Can you please advise? I am struggling my a** off

Anonymous
Not applicable

Hi,@Anonymous 

You should change all the table name to the table where the field company exists. For example, in my case it's Table1. 

vfenlingmsft_1-1721098555451.png

 

 

I hope my suggestions give you good ideas, if you have any more questions, please clarify in a follow-up reply.
Best Regards,
Fen Ling,
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Anonymous
Not applicable

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors