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! Learn more

Reply
jrhughes
New Member

Multiplying between Tables

Hi All,

We're trying to create a seemingly simple calculation between two tables to measure the risk score for quality issues. 

In 'table1' I have a [Keywords] field and a [Phase Value] field that have reference values that relate the phase at which an issue is discovered to a numeric value.

In 'table2' I have a list of issues that each have a corresponding [Keywords] value and a [Severity] value.

My goal is for each issue to multiply the [Severity] value from 'table2' with the [Phase Value] from 'table1'.

Markup 1.pngAny help would be greatly appreciated!

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

Hi @jrhughes,

In your 'phases' table, the values of "Keywords" field are unique, right? If it is, you can create relationship between 'Current' table and 'phases' table. Then please create a calculated column using RELATED function. I try to reproduce your scenario as follows.

 

My sample data tables.

Capture1.PNGCapture2.PNG

Create calculated column using the formula below, and get expected result shown in screenshot.

IssueScore = 'Current'[Severity]*RELATED(Phases[Phase Value])



1.PNG

If you have any issue, please feel free to ask.

Best Regards,
Angelia

View solution in original post

1 REPLY 1
v-huizhn-msft
Microsoft Employee
Microsoft Employee

Hi @jrhughes,

In your 'phases' table, the values of "Keywords" field are unique, right? If it is, you can create relationship between 'Current' table and 'phases' table. Then please create a calculated column using RELATED function. I try to reproduce your scenario as follows.

 

My sample data tables.

Capture1.PNGCapture2.PNG

Create calculated column using the formula below, and get expected result shown in screenshot.

IssueScore = 'Current'[Severity]*RELATED(Phases[Phase Value])



1.PNG

If you have any issue, please feel free to ask.

Best Regards,
Angelia

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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