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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

calculating a measure based on a column in a different table

Question

 

The following measure successfully calculates the cumulative CO2 emissions per building present in my data model, based on electricity and gas usage of each building. The buildings are in a different table than the measure, and so are their square meters of floor area.

 

Cumulative CO2 Emissions Year per Building = 
 IF(
 MONTH([Date ]) < MONTH(TODAY());
 ElectricityTelemetryData[Cumulative CO2 Emission Electricity Year]+GasTelemetryData[Cumulative CO2 Emissions Gas Year];
 BLANK()
    )

 

Now I want to divide this measure by the square meters that belong to each building. Strangely enough, the following DAX code doesn't work, and it gives the message "The column 'Buildings[HouseSizeInSquareMeters]' either doesn't exist or doesn't have a relationship to any table available in the current context." Even though the tables ARE related, albeit indirectly, and I have already tried switching cross-filter directions of relationships from single to both.

 

Cumulative CO2 Emissions Year Per Building per m² = 
DIVIDE(
	'MetaUtilityTypes'[Cumulative CO2 Emissions Year Per Building];
	RELATED(Buildings[HouseSizeInSquareMeters])
)

Hope somebody can help!

 

 

 

Kind regards,

 

Robin

0 REPLIES 0

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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