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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anshenterprices
Helper IV
Helper IV

merging cells in table

Source data

CollegeNameClassnoofstudents
ABCFY60
ABCSY80
ABCTY50
XYZst40
XYZnd70
XYZrd30



i want below output but i dont want matrix table

CollegeNameClassnoofstudents

                                     FY          60
  Abc                             SY          80

                                     TY           50
                                    ST            40
XYZ                               nd            70
                                    rd               30
   



1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anshenterprices , This best possible in matrix

 

or try

concatenated(Table, Table[Class] & " " & Table[noofstudents],unichar(10))

 

or

concatenated(Table, Table[Class] & " " & Table[noofstudents] & unichar(10))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@Anshenterprices , This best possible in matrix

 

or try

concatenated(Table, Table[Class] & " " & Table[noofstudents],unichar(10))

 

or

concatenated(Table, Table[Class] & " " & Table[noofstudents] & unichar(10))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@amitchandak  I have used the matrix then turned off the row_header stepped layout from the property of matrix and after that i opened all the + icons and then turn off the  +/- Icon from the property of matrix. its sorted finally its looks like simple table now

Hi @Anshenterprices ,

 

As mentioned above, the best way to show the results is to create a matrix visual. If your question has been solved, you can mark the correct response as a standard answer to help the other members find it more quickly.


If the problem is still not resolved, please provide detailed error information. Looking forward to your reply.🙂

Best Regards,
Henry

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

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors