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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
WirelessBrains
Frequent Visitor

Make a Column that averages numbers from another Column Based on Relationship

So I have a column that is formatted as follows

 

Booking_Table

 

Order # | Vendor  |  Days Difference

 

1               Vnd1                  3

2               Vnd1                  6

3               Vnd1                -1

4               Vnd2                  4

5               Vnd2                  5

6               Vnd3                 -2

 

And a second table that is compoased of just distinct vendors

 

Vendor_Average

 

Vendor | 

 

Vnd1

Vnd2

Vnd3

 

I want to add a second column to this table that is the AVERAGE of a vendors days diference from table one, as shown below

 

 

Vendor_Average

 

Vendor | Average Days

 

Vnd1                2.1

Vnd2               -1.3

Vnd3                4.1

 

I have tried the following along with several other things but I have not been able to figure out what to do exactly. It seems like a simple concept but I cannot figure out how to execute it. Any assistance in the correct direction would be apprecieated.

 

Note, this is the DAX expression to create the table, I am attempting to add the column through the table creation expression.

 

Vendor_Average = SUMMARIZE(Booking_Table, Booking_Table[Vendor], "AvgNumDay", AVERAGEX(FILTER(Booking_Table, Booking_Table[Vendor] = RELATED(Vendor_Average(Vendor))

 

1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @WirelessBrains,

 

Please modify your DAX formula as below:

Vendor_Average =
SUMMARIZE (
    Booking_Table,
    Booking_Table[Vendor],
    "Average Days", AVERAGE ( Booking_Table[Days Difference] )
)

Regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @WirelessBrains,

 

Please modify your DAX formula as below:

Vendor_Average =
SUMMARIZE (
    Booking_Table,
    Booking_Table[Vendor],
    "Average Days", AVERAGE ( Booking_Table[Days Difference] )
)

Regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Worked perfectly! Glad to see that I was not that far off, thanks.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors