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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
nhodges
Helper I
Helper I

Combining like measures for different tables

I have 5 tables all with their own seperate Total Revenue Calculation formulas. In each table I have created a Total Revenue Measure. Now I would like one big table that shows all the Total revenue measures in the same column so my goal is to have something that looks like this.

TABLE NAMETOTAL REVENUE
Table 1 Name Total Revenue in table 1
Table 2 Name Total Revenue in table 2
Table 3 NameTotal Revenue in table 3
Table 4 NameTotal Revenue in table 4
1 ACCEPTED SOLUTION
isjoycewang
Solution Supplier
Solution Supplier

Hi @nhodges ,

 

Is this what you want? Define the row header first, and then you can define which measure to use in each row.

isjoycewang_0-1694761337042.png

 

I have a dummy file for reference, please replace the table and measure to your own. Thanks.

Exercise File

 

View solution in original post

7 REPLIES 7
nhodges
Helper I
Helper I

srry am unable to open the file because it is restricted at my work.

Oops, let me explain the steps below:

1. Create a new table with your table name as row header [Metric]. 

2. Create measure to define which measure to use in each row [Total Revenue].

3. Put the [Metric] and [Total Revenue] into your table visual.

isjoycewang_0-1694770110613.png

 

Total Revenue = 
SWITCH(TRUE(),
SELECTEDVALUE('Table'[Table Name]) = "Table1", [Total Revenue in Table 1],
SELECTEDVALUE('Table'[Table Name]) = "Table2", [Total Revenue in Table 2],
SELECTEDVALUE('Table'[Table Name]) = "Table3", [Total Revenue in Table 3], 
BLANK())

 

isjoycewang_1-1694770206042.png

 

 

You're awesome thank you!

 

If I wanted to break it down month over month afterwards so something like this:

Would I follow similar steps? and just add on to the formula? but I wouldnt want to have to add a month each time, no sure if theres a way for that, but I can keep playing around with it.

 

nhodges_0-1694771679987.png

 

Hi @nhodges ,

 

I think it depends on the relationships in your data model, but ideally you can create a matrix and put the month column into the row. Thanks.

 

isjoycewang_0-1695008575384.png

 

 

isjoycewang
Solution Supplier
Solution Supplier

Hi @nhodges ,

 

Is this what you want? Define the row header first, and then you can define which measure to use in each row.

isjoycewang_0-1694761337042.png

 

I have a dummy file for reference, please replace the table and measure to your own. Thanks.

Exercise File

 

One more question: Is this added as a table formula, or measure? Seems like I am building a new table then putting this as the formula? Is that correct?

 

This looks great, will give this a try!

Thank you for the help!

I already have a CALENDAR table that they all connect to

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors