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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Anonymous
Not applicable

Using 'product' function by group

Hi, 

 

With original Table 1, 

 

First, I would like to multiply Rate% by the same WO no. From Table 1; I am not sure which fomular I should use such that only multiply for the same group in WO column.

 

Then, I would like to average Yield % in Table 2 by the same WO no. 

 

Please advise fomular I should use.

 

dogbural_0-1658500888333.png

 

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

@Anonymous 

Not sure if I correctly understand, but please try 

Yield % =
VAR T1 =
    SUMMARIZE (
        TableName,
        TableName[WO],
        TableName[Product],
        "@Yield", PRODUCT ( TableName[Rate] )
    )
RETURN
    AVERAGEX ( T1, [@Yield] )

View solution in original post

4 REPLIES 4
tamerj1
Super User
Super User

@Anonymous 

Not sure if I correctly understand, but please try 

Yield % =
VAR T1 =
    SUMMARIZE (
        TableName,
        TableName[WO],
        TableName[Product],
        "@Yield", PRODUCT ( TableName[Rate] )
    )
RETURN
    AVERAGEX ( T1, [@Yield] )
LFS
Regular Visitor

Good morning everyone.
Has anyone ever made an application in Visual Studio (Vb.net) to open a Gravico or destbord in the form of an application. And would you have some example to send me Or could you describe how it was done.

LFS
Regular Visitor

Good morning everyone.
Has anyone ever made an application in Visual Studio (Vb.net) to open a Gravico or destbord in the form of an application. And would you have some example to send me Or could you describe how it was done.

 

tamerj1
Super User
Super User

Hi @Anonymous 

do you have relationships between the two tables? Can you clarify? I assume you want (1.0 x 1.0 ) x (1.0 + 1.0)/2 is that correct?

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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