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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Employee
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
Employee
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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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