Does anyone know how I could do this:
Cell C4 in "Template Table" has a formula. I want cell C10 in "Copy Table" to reference the formula in C4, not its value. When I change the formula in C4, I want the formula in C10 to be the same as C4.
You could use name manager to define this as a named formula and use it anywhere in the worksheet. For example,
with C4
being the active cell, select Formulas > Name Manager > New
enter new_hire
for the name
enter your formula as 'refers to':
IF(B4="New Hire Employee", "This is a New Hire Employee","This is a Post-Probationary Employee")
this creates a named formula with IF(left cell="New Hire...
then you can enter =new_hire
anywhere in the workbook where mapping is needed
when you want to make a change, update the formula in Name Manager and all references will be updated automatically
I have not added any error checking to keep the example simple