I have this formula in a cell
=VLOOKUP('Category Summary'!$A30,'1'!$A$34:$B$45,2,FALSE)
Question focuses on the reference to '1' and $A$34:$B$45. I'm using this formula in a large number of cells; those two values change depending upon which column/row they're being used in. When I need those value to change, I'm currently having to change each cell separately.
What I'd like to do is to use a cell reference instead of '1' and $A$34:$B$45 - if I could point those values in the formula to a cell reference I can copy the formula more liberally and only make changes to the cells that contain the reference... BUT, I can't figure out the proper syntax... (combination of quotes and ampersands)
Somethign along the lines of
=VLOOKUP('Category Summary'!$A30,' & $B$1 & '! & $C$1 & ,2,FALSE)
Anyone help?
-Chris
=VLOOKUP('Category Summary'!$A30,'1'!$A$34:$B$45,2,FALSE)
Question focuses on the reference to '1' and $A$34:$B$45. I'm using this formula in a large number of cells; those two values change depending upon which column/row they're being used in. When I need those value to change, I'm currently having to change each cell separately.
What I'd like to do is to use a cell reference instead of '1' and $A$34:$B$45 - if I could point those values in the formula to a cell reference I can copy the formula more liberally and only make changes to the cells that contain the reference... BUT, I can't figure out the proper syntax... (combination of quotes and ampersands)
Somethign along the lines of
=VLOOKUP('Category Summary'!$A30,' & $B$1 & '! & $C$1 & ,2,FALSE)
Anyone help?
-Chris
Comment