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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register 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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.