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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

How to incorporate two columns from different unrelated tables into VALUES for SUMX of a measure?

Hi,

 

I am using a formula to create the SUM of a measure:
Total Underutilisation = IF(HASONEVALUE([name]), [Measure], SUMX(VALUES([name]), [Measure]))

I actually have two fields filtering the calculated Underutilisation, the name as well as the account.

These two columns are from two different and unrelated tables.


I was told I could use SUMMARIZE in the formula below:

=IF(HASONEVALUE([name]), [Measure], SUMX(SUMMARIZE([Table], [Column1], [Column2], "Custom"), [Custom]))

But my problem is that both the columns are from two different and unrelated tables, so I cannot use the ADDCOLUMNS and RELATED formulas either:

=IF(HASONEVALUE([name]), [Measure], SUMX(SUMMARIZE(ADDCOLUMNS([Table], "Custom", RELATED(Table2[Column2])), Table[Column], [Custom])))

 

1 ACCEPTED SOLUTION
mahoneypat
Microsoft Employee
Microsoft Employee

Have you already tried something like below?

 

NewMeasure =
IF (
    HASONEVALUE ( Table[Name] ),
    SUMX (
        CROSSJOIN ( VALUES ( Table1[Column1] )VALUES ( Table2[Column2] ) ),
        [Measure]
    )
)

 

You could also consider using TREATAS() to pass in a filter from the second table.


Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

3 REPLIES 3
Jihwan_Kim
Super User
Super User

Hi, @Anonymous 

Please correct me if I wrongly understand your question.

Without having relationships, and you need to create measure that shows corresponding result to the unrelated tables, you can try to use TREATAS function.

In this case, because there are two unrelated tables, I used two times of TREATAS in the measure.

 

you can find the link below that is the sample pbix file.

 

Value Total With TREATAS =
CALCULATE (
SUMX ( 'Table', 'Table'[Value] ),
TREATAS ( VALUES ( Names[Name] ), 'Table'[Name] ),
TREATAS ( VALUES ( Accounts[Account] ), 'Table'[Account] )
)
 
 

Hi, My name is Jihwan Kim.

If this post helps, then please consider accept it as the solution to help other members find it faster.

Picture6.png

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.
mahoneypat
Microsoft Employee
Microsoft Employee

Have you already tried something like below?

 

NewMeasure =
IF (
    HASONEVALUE ( Table[Name] ),
    SUMX (
        CROSSJOIN ( VALUES ( Table1[Column1] )VALUES ( Table2[Column2] ) ),
        [Measure]
    )
)

 

You could also consider using TREATAS() to pass in a filter from the second table.


Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Anonymous
Not applicable

Thank you, the CROSSJOIN worked perfectly for me!

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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