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

avatar user

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)