Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hello,
I have the following matrix:
But I want something like this:
Forget about the colors, I just want "Receitas" to becomes a new row instead to be side by side with the "Despesas" row.
My data is organized with the following way:
Tables:
| Data/Date | | Despesas/Profits | | Receitas/Revenues |
-------------- ------------------ --------------------
| mês/month | | VRTOTAL/Value | | VRTOTAL/Value |
| mês/month | | mês/month |
| Valor_Sring¹ | | Valor_String¹ |
1 -- Valor_String is just a a string value containing the name of the table.
And these are my fields:
Solved! Go to Solution.
To fix it, I create a new table named Result, and it contains the difference between Profit's VRTOTAL and Revenues' VRTOTAL, the date and added a new columns with 'Result' as value for all rows.
Then I created a new table like this:
| NewTable |
| month |
| VRTOTAL |
| Valor_String |
In this new table, I appended all VRTOTAL, month and Valor_String from Profit, Revenues and Result. For example:
NewTable --> | month | VRTOTAL | Valor_String
01 100 'revenue'
10 30 'revenue'
10 100 'result'
01 -40 'result'
01 60 'profit'
10 50 'profit'
And finally, I added this table to a martrix.
To fix it, I create a new table named Result, and it contains the difference between Profit's VRTOTAL and Revenues' VRTOTAL, the date and added a new columns with 'Result' as value for all rows.
Then I created a new table like this:
| NewTable |
| month |
| VRTOTAL |
| Valor_String |
In this new table, I appended all VRTOTAL, month and Valor_String from Profit, Revenues and Result. For example:
NewTable --> | month | VRTOTAL | Valor_String
01 100 'revenue'
10 30 'revenue'
10 100 'result'
01 -40 'result'
01 60 'profit'
10 50 'profit'
And finally, I added this table to a martrix.