Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello everyone,
Is it possible to make this in a table (not a matrix) visualization in power BI.
Thank you very much
Hi @elcamino ,
Yes, it is possible to create subgroups in a Power BI Table visualization while maintaining a structure similar to the one in your image. However, since Power BI’s Table visualization does not support hierarchical grouping like the Matrix visualization, you need to follow these steps:
Since Table visuals do not allow natural hierarchical grouping, you should create a Sorting Column in Power BI to structure the data properly.
Since Table visuals do not allow hierarchical column grouping, you need to create separate columns manually:
Use DAX to create calculated columns like:
Rent_Prices_2025_Index_New = IF( [Year] = 2025, [Index_New], BLANK() )
Rent_Prices_2025_Index_Old = IF( [Year] = 2025, [Index_Old], BLANK() )
Rent_Prices_2024_Index_New = IF( [Year] = 2024, [Index_New], BLANK() )
Rent_Prices_2024_Index_Old = IF( [Year] = 2024, [Index_Old], BLANK() )
3. Use Conditional Formatting to Differentiate Sections
Hi @elcamino
It is not possible to merge cells vertically like you've done for Geography. Those in the values section are possible.
Hi @elcamino
Unfortunately, we don't have an option for cell merging in visualization, only grouping based on logic and hierarchy, which is only possible in matrixes.
There is an idea about this issue, please vote for it ( I voted):
https://ideas.fabric.microsoft.com/ideas/idea/?ideaid=dd31f678-89ad-eb11-89ee-281878bdee4b
If my answer was helpful please give me a Kudos and accept as a Solution.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.