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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
sachingupta31
New Member

Grouping multiple rows in 1 based on one column value in Power BI

Hello,

 

I have below data in power BI.

URLCount
/XXX/v1/sac5
/XXX/v1/sac/10

 

What I would like to do is group the URL column value after cleaning them and then the final output should be like below

 

URLCount
/XXX/v1/sac15

 

For first step I had removed the '/' from the end to make the URL same so that we can group. Below is the expression I have written.

Right (col1], 1) = "/",
LEFT(col1, LEN(col1) -1),
col1
)

which gives the output = /XXX/v1/sac

For 2nd step I am trying to group using  SUMMARIZE DAX function, but it is not working for me. Can someone help on to achieve the desired output?

 

Thanks,

Sachin

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @sachingupta31 ,

Below is my table:

vxiandatmsft_0-1700715563152.png

The following DAX might work for you:

Measure = 
   CALCULATE(
      SUM('Table'[col2]),
      ALLEXCEPT('Table','Table'[col 1])
   )

The final output is shown in the following figure:

vxiandatmsft_1-1700715616659.png

Best Regards,

Xianda Tang

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

3 REPLIES 3
Rupak_bi
Super User
Super User

if the Url exactly matches, it should work. please share sample data to check.



Regards
Rupak
FOLLOW ME : https://www.linkedin.com/in/rupaksar/

sachingupta31_0-1700698128399.png

Hi @Rupak_bi  PFA, sample data and output.  Also, col1 is a column in a table and Col2 is measure created using below formula.
col2 Measure formula= CALCULATE(COUNT(Related Features))

please let me know if it works.

Anonymous
Not applicable

Hi @sachingupta31 ,

Below is my table:

vxiandatmsft_0-1700715563152.png

The following DAX might work for you:

Measure = 
   CALCULATE(
      SUM('Table'[col2]),
      ALLEXCEPT('Table','Table'[col 1])
   )

The final output is shown in the following figure:

vxiandatmsft_1-1700715616659.png

Best Regards,

Xianda Tang

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.