simple bill of quantities sheet

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Do you want the value in the rate column to reflect rate for the ID selected in column D? If so, assuming your data is on sheet2 with column A being the ID and column C being the rate, use this formula in cell H2 and drag down:

=IFERROR(VLOOKUP(D2,Sheet2!A:C,3,0),"")

This will return a blank if nothing or an invalid ID is entered into the ID cell in column D.

Rick
 
Upvote 0
Do you want the value in the rate column to reflect rate for the ID selected in column D? If so, assuming your data is on sheet2 with column A being the ID and column C being the rate, use this formula in cell H2 and drag down:

=IFERROR(VLOOKUP(D2,Sheet2!A:C,3,0),"")

This will return a blank if nothing or an invalid ID is entered into the ID cell in column D.

Rick

thanks for the reply rick,

but no.
that items 1,2,3 coming from the rate cell is just the rate buildup.
i just want the total rate in in the rate column to reflect the ID. i dont know how to drag down and have the total rate in the rate column and the working out in the second sheet. (whilst having the calc in sheet 2 linked to the rate in sheet 1)
 
Upvote 0
Maybe this, which sums up all the occurrences of the rate for an item number. However, you would have to remove the item number from your Total row in sheet 1, or eliminate the Total row. (entered into cell D2 and dragged down)

=SUMIFS(Sheet1!$C:$C,Sheet1!$A:$A,$D2)

If you must keep the total row and the Item number on sheet 1, here's an alternative formula.

=SUMIFS(Sheet1!$C:$C,Sheet1!$A:$A,$D2,Sheet1!$B:$B,"<>Total")

Rick
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,329
Members
452,635
Latest member
laura12345

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