I need help with a cost sheet. I don’t have much Excel experience, but I’ll try my best to describe.
Column A lists the name of all 50 of our products.
Column B lists the numeric product code of all 50 products.
Column C lists the project hours for each of our 50 products. This field needs to be blank until a product’s individual cost sheet is filled out, then its total cost is populated in Column D below, and a lookup function populates column c with the project hours (listed in the lookup table).
Column D lists the individual cost for each of our 50 products. This field is displayed with a blank but has the page reference to the total cost on the individual cost sheet. Once the individual cost sheet is completed and the total cost displays in Column D, the lookup function populates column C with project hours.
Example: A1 Widgets (product name)
B1 800 (numeric product code)
C1 400 (project hours – not displayed until cost appears in D1 and then lookup)
D1 $1500 (displays blank until cost is entered in individual cost sheet. But it isn’t truly blank – the formula line shows the reference to Widget cost sheet, cell number (L51) of total Widget cost as follows:
’Widgets’!L51
== I’ve tried the following formula in cell B1 of my cost sheet, but it only works if I delete the page reference in D1.
=IF(ISBLANK(D1),"",VLOOKUP(B1,'Project Hrs Lookup'!A4:C23,3,FALSE))
Should I be using something beside ISBLANK since cell D1 has a page reference and isn’t truly blank?