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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
rmblack92
New Member

If column A Table 1 matches column B Table 2 then return column B table 1

Hi,

 

I'm relatively new to Power BI and need to build a report that shows which suppliers are on contract in order to compare the total spend versus contracted spend as a value & a percentage.

 

Example tables: 

Table 1 

Supplier NumberTotal Spend
A123£98
B123£94
C123£100
D123£88

 

Table 2

Supplier Number
A123
B123
D123

 

What I want to show 

Supplier NumberTotal SpendContracted Spend
A123£98£98
B123£94£94
C123£100 
D123£88£88
Total£380£280

 

Using the sum of each column I will create a Card that shows the percentage of contracted spend so in this example the contract spend would be 73.68%

 

Please help! 

1 ACCEPTED SOLUTION
AllisonKennedy
Community Champion
Community Champion

@rmblack92  It looks like you have only some of your suppliers in the DimSupplier table - defined as 'Contracted Spend'. Do you have the non-contracted suppliers in a table somewhere too? It would be handy to have this info in one table. I've created a sample report, but I'm using the SupplierID from the Spend table which is not generally a good idea. 

 

You can create a measure like this; 

Total Spend Contracted =
SUMX(
FILTER(Spend, RELATED( Suppliers_Contracted[Supplier Number]) <> BLANK())
, Spend[Total Spend]
)
 
See attached file below signature. 

Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

View solution in original post

2 REPLIES 2
v-xiaotang
Community Support
Community Support

Hi @rmblack92 

BTW, you can use HASONEVALUE() to get the expected result,

vxiaotang_1-1633429330027.png

Contracted Spend = IF(HASONEVALUE(Table1[Supplier Number]),CALCULATE(MIN(Table1[Total Spend (£)]),FILTER(Table1,RELATED(Table2[Supplier Number])<>BLANK())),[Contracted Spend Total])
 

See sample file attached bellow.

 

 

Best Regards,

Community Support Team _Tang

If this post helps, please consider Accept it as the solution to help the other members find it more quickly.

AllisonKennedy
Community Champion
Community Champion

@rmblack92  It looks like you have only some of your suppliers in the DimSupplier table - defined as 'Contracted Spend'. Do you have the non-contracted suppliers in a table somewhere too? It would be handy to have this info in one table. I've created a sample report, but I'm using the SupplierID from the Spend table which is not generally a good idea. 

 

You can create a measure like this; 

Total Spend Contracted =
SUMX(
FILTER(Spend, RELATED( Suppliers_Contracted[Supplier Number]) <> BLANK())
, Spend[Total Spend]
)
 
See attached file below signature. 

Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.