Hey,
I'm working on a job cost form to price things for my business. On the job cost form I have it set up as follows:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Size[/TD]
[TD]Shape[/TD]
[TD]Color[/TD]
[TD]Qty[/TD]
[TD]Unit Cost[/TD]
[/TR]
[TR]
[TD]5"[/TD]
[TD]Round[/TD]
[TD]Red[/TD]
[TD]5[/TD]
[TD]$0.07[/TD]
[/TR]
[TR]
[TD]11"[/TD]
[TD]Round[/TD]
[TD]Red[/TD]
[TD]10[/TD]
[TD]$0.15[/TD]
[/TR]
</tbody>[/TABLE]
I also have a sheet that has the pricing data from my main supplier. it looks as follows:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Color[/TD]
[TD]+/-[/TD]
[TD]Base Color[/TD]
[TD]Size[/TD]
[TD]Qty[/TD]
[TD]Base
Price[/TD]
[TD]Cost[/TD]
[TD]Cost
Per Unit[/TD]
[/TR]
[TR]
[TD]Red[/TD]
[TD]$0.00[/TD]
[TD]Red[/TD]
[TD]5"[/TD]
[TD]100[/TD]
[TD]$5.10[/TD]
[TD]$5.10[/TD]
[TD]$0.05[/TD]
[/TR]
[TR]
[TD]Red[/TD]
[TD]$0.00[/TD]
[TD]Red[/TD]
[TD]11"[/TD]
[TD]100[/TD]
[TD]12.15[/TD]
[TD]12.15[/TD]
[TD]$0.12[/TD]
[/TR]
</tbody>[/TABLE]
I am wanting to get excel to take the values in the Size, Shape, and Color columns of the costing form and look them up in the database table and then grab the Cost per unit and return it in the unit cost column.
I'm working on a job cost form to price things for my business. On the job cost form I have it set up as follows:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Size[/TD]
[TD]Shape[/TD]
[TD]Color[/TD]
[TD]Qty[/TD]
[TD]Unit Cost[/TD]
[/TR]
[TR]
[TD]5"[/TD]
[TD]Round[/TD]
[TD]Red[/TD]
[TD]5[/TD]
[TD]$0.07[/TD]
[/TR]
[TR]
[TD]11"[/TD]
[TD]Round[/TD]
[TD]Red[/TD]
[TD]10[/TD]
[TD]$0.15[/TD]
[/TR]
</tbody>[/TABLE]
I also have a sheet that has the pricing data from my main supplier. it looks as follows:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Color[/TD]
[TD]+/-[/TD]
[TD]Base Color[/TD]
[TD]Size[/TD]
[TD]Qty[/TD]
[TD]Base
Price[/TD]
[TD]Cost[/TD]
[TD]Cost
Per Unit[/TD]
[/TR]
[TR]
[TD]Red[/TD]
[TD]$0.00[/TD]
[TD]Red[/TD]
[TD]5"[/TD]
[TD]100[/TD]
[TD]$5.10[/TD]
[TD]$5.10[/TD]
[TD]$0.05[/TD]
[/TR]
[TR]
[TD]Red[/TD]
[TD]$0.00[/TD]
[TD]Red[/TD]
[TD]11"[/TD]
[TD]100[/TD]
[TD]12.15[/TD]
[TD]12.15[/TD]
[TD]$0.12[/TD]
[/TR]
</tbody>[/TABLE]
I am wanting to get excel to take the values in the Size, Shape, and Color columns of the costing form and look them up in the database table and then grab the Cost per unit and return it in the unit cost column.