The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I have a table containing rows:
Account #
Part #
Account #/Part # (Combines from the above)
I have another table containing rows:
Account #
Part #
Account #/Part # (Combines from the above)
Extended Price
The relationship is ONE to MANY. I would like to add a column to the initial table that is a sum if Extended Price at account #/part # level.
Not sure where to begin with this.
If I understand correctly, you calculated column should look something like this.
Column = CALCULATE( SUM( 'Table2'[Ext Price] ) )
I hope I understood correctly.