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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Krzysiek
New Member

Grouping 1 value into 2 groups

Hi!

I have a table like 1., I know how to do 2. and I would like to do something like 3.

Could you help me? I have no clue how to do it.

For example,

I want to count rows with A - the result should be 6,

I want to count rows with B - the result should be 6,

but if I check A and B - the result shoulb be 11 (not equals 6 + 6).

problem.png

4 REPLIES 4
Krzysiek
New Member

Thank you! It will help a little.

 

I have list of schools and list of big cities (9).
Every school is related to big city.

But if school is between 2 cities then one school is related to both (and the name looks like for example "Liverpool/Manchester".

When I click on filter Liverpool I would like to see data connected to Liverpool (and Liverpool/Manchester) on the graph.

If I click Manchester I would like to see data for Manchester (and Liverpool/Manchester).

But if I check both I would like see data for Machester and Liverpool (and Liverpool/Manchester).

pomoc.png

 

 

Hi @Krzysiek,

 

How about expanding them like the snapshot? You can choose both of them with "CTRL".Capture.JPG

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

@Krzysiek

 

On the lines of what @v-jiascu-msft suggested, you don't need to modify your original table to split the multi valued column into 2 rows.

Instead, you can create a new separate table which will have just 2 columns - City and Big City.

Then make a relation between this new table and your own table. You can use the slicer with the field from this new table.

 

Hope it helps

 

Regards

v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @Krzysiek,

 

I'm afraid we can't do like that. But we can create some measures. What's your real scenario?

countA =
CALCULATE (
    COUNT ( Table1[Letter] ),
    SEARCH ( "A", 'Table1'[Letter], 1, 0 ) > 0
)
countB =
CALCULATE (
    COUNT ( Table1[Letter] ),
    SEARCH ( "B", 'Table1'[Letter], 1, 0 ) > 0
)
countAB =
CALCULATE (
    COUNT ( Table1[Letter] ),
    FILTER (
        'Table1',
        SEARCH ( "A", 'Table1'[Letter], 1, 0 ) > 0
            || SEARCH ( "B", 'Table1'[Letter], 1, 0 ) > 0
    )
)

Grouping_1_value_into_2_groups

 

Best Regards,

Dale

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

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.