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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi There ;
İ need to calculateof Avarage Qty of each vendor's in another table as column
İ have a sheet as below
and i have a table as below
i want to create a column on above table which gives " avarage " of qty for each vendor as below :
thanks in advance
Solved! Go to Solution.
Let's call your tables Table1 and Table2.
Relate Table2 to Table1 on Vendor Name column.
In Table2, create this column:
Column = AVERAGEX(RELATEDTABLE('Table1'),[Qty])
Let's call your tables Table1 and Table2.
Relate Table2 to Table1 on Vendor Name column.
In Table2, create this column:
Column = AVERAGEX(RELATEDTABLE('Table1'),[Qty])