Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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.