Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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.