Need advice on a new spreadsheet that can show me best price from a particular supplier

Massivebarra

New Member
Joined
Jun 13, 2018
Messages
4
hi,

I have multiple suppliers that I ask them to supply plumbing items that I choose at their best price.

My trouble is the suppliers are becoming more eg. 10 suppliers.

Each supplier can supply their 'own brand' of tap or Pipe

Each supplier may have a different QTY for what they are offering at price.

i want to be able to locate the best price for an item and then somehow order from the spreadsheet without revealing a competitors price to them

I hope this makes sense?

ITEMSUPPLIER 1QTYSUPPLIER 2QTYSUPPLIER 3QTYSUPPLIER 4QTY
TAP$3.101000$3:30500$2.702000$3.201000
PIPE$10.00100$10.50200$11.00100$10:00100
CU$30.5050$30.2050$31.0050$25.50200
FITTING$5.00100$5.00100$5.00200$5.50100
GLUE$3.7060$4.0050$3.70100$3.7060
VENT$8.10100$5.00200$8.10100$7.50100

<tbody>
</tbody>
 
ok it's not pretty, (it looks better in excel i swear!) but tell me if this is something like what you wanted:

In row 2 you fill in your order quantities. Rows 4-7 show the subtotals (qty x item price) for each supplier. If the order quantity is lower than the minimum, it shows "n/a". If the order field is blank, it stays blank. Column "i" shows the order total for each supplier. If there are any n/a's in that row, it shows n/a (i.e. You can't make that order from that supplier unless you increase quantity). Rows 11-14 are where you put your actual suppliers and prices.

The only thing left is to look at line i and see which is the cheapest total. I think the easiest way to do that would be conditional formatting --> color scales. (but play with the other conditional formatting options; data bars might be good too.)

excel 2010
abcdefghijkl
1tapspipesfittings(copy and paste these top two lines for your order)
2order:1000200
3total:
4suppler 1310020005100
5supplier 2330021005400
6supplier 3n/a2200n/a
7supplier 4320020005200
8
9
10suppliertap pricetap qtypipe pricepipe qtyfitting pricefitting qty
11supplier 1$3.10 1000$10.00 100$5.00 100(fill in price info in this grid)
12supplier 2$3.30 500$10.50 200$5.00 100
13supplier 3$2.70 2000$11.00 100$5.00 200
14supplier 4$3.20 1000$10.00 100$5.50 100

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
sheet1

worksheet formulas
cellformula
c4=if(c$2>0,if(c$2>=c11,(c$2*b11),"n/a"),"")
c5=if(c$2>0,if(c$2>=c12,(c$2*b12),"n/a"),"")
c6=if(c$2>0,if(c$2>=c13,(c$2*b13),"n/a"),"")
c7=if(c$2>0,if(c$2>=c14,(c$2*b14),"n/a"),"")
e4=if(e$2>0,if(e$2>=e11,(e$2*d11),"n/a"),"")
e5=if(e$2>0,if(e$2>=e12,(e$2*d12),"n/a"),"")
e6=if(e$2>0,if(e$2>=e13,(e$2*d13),"n/a"),"")
e7=if(e$2>0,if(e$2>=e14,(e$2*d14),"n/a"),"")
g4=if(g$2>0,if(g$2>=g11,(g$2*f11),"n/a"),"")
g5=if(g$2>0,if(g$2>=g12,(g$2*f12),"n/a"),"")
g6=if(g$2>0,if(g$2>=g13,(g$2*f13),"n/a"),"")
g7=if(g$2>0,if(g$2>=g14,(g$2*f14),"n/a"),"")
i4=if(countif(c4:g4,"n/a"),"n/a",sum(c4:g4))
i5=if(countif(c5:g5,"n/a"),"n/a",sum(c5:g5))
i6=if(countif(c6:g6,"n/a"),"n/a",sum(c6:g6))
i7=if(countif(c7:g7,"n/a"),"n/a",sum(c7:g7))

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
thanks lenny....you've helped me out alot. I may have more questions as i build this spreadsheet
 
Upvote 0

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying

Forum statistics

Threads
1,214,929
Messages
6,122,314
Members
449,081
Latest member
tanurai

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top