cancel
Showing results for 
Search instead for 
Did you mean: 
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
Super User
Super User

@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
Super User
Super User

@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
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors