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
Aydeedglz
Helper V
Helper V

DAX Bring two columns from different tables, and one table has measures

Hi,

 

I am trying to bring two columns from different tables that are connected but one table has only measures, how can I bring it? Or do I need to create the masure in here? Because I am new and is complicated for me to move it, thanks

 

Aydeedglz_0-1682089999659.png

Aydeedglz_1-1682090009583.png

Aydeedglz_2-1682090090002.png

 

 

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Because its a measure and not a column you need to give it a name in SUMMARIZECOLUMNS, 

EVALUATE
SUMMARIZECOLUMNS (
    VALIDATED_PD[m_Group_Currency_Amount],
    "Total Overdue", [a_TotalOverdue]
)

View solution in original post

3 REPLIES 3
johnt75
Super User
Super User

Because its a measure and not a column you need to give it a name in SUMMARIZECOLUMNS, 

EVALUATE
SUMMARIZECOLUMNS (
    VALIDATED_PD[m_Group_Currency_Amount],
    "Total Overdue", [a_TotalOverdue]
)

Thanks it works! is the same logic for calculates columns? Or do I need to create it as a measure?

 

You don't need to specify a name for a calculated column, you can just specify the column, but all the columns need to be before the measures in the SUMMARIZECOLUMNS

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

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.