Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I have created this messure that works as it shold. But what i really need is for it to be in column format so that I can calculate on it.
Can anyone help me with that?
Columns are tied to a specific table (measures are not). So at the very minimum you need to do something like
TogetherColumn = SUM('Forecast'[Quantity])+SUM (RELATED('Forbrukning'[Consumption]))
in the Forecast table. Or the other way round, depending on the relationship between your tables. RELATED only works upwards, from the "*" table into the "1" table.