I have a series of formulas that reference a Named Range in the same Workbook. Sometimes I need to use a different Named Range in those existing formulas. I would like to put the Name of the Range in Cell B3, and use that cell in my Formulas. Then if I change the contents of Cell B3 to the Name of a different Named Range. All my formulas will now refer to the new Named Range.
My current formula is:
=IF(ISNUMBER(MATCH(F1144,_293,0)),C1144,"")
Where "_293" is the Name of the Named Range. (this works)
I would like to place _293 in cell B3 for this formula.
Then edit the formula to use the contents of Cell B3 as its "range" input.
Such as this:
=IF(ISNUMBER(MATCH(F1144,$B$3,0)),C1144,"") (this does not work)
I have been unable to find a way for my formula to interpret the contents of cell B3 an the answer to the "range" input of the Match function. When I evaluate the formula, I do not get a "TRUE" result when I should. Where this evaluation should return "TRUE" it returns "Volatile" instead.
How can I translate the contents of Cell B3, in my new formula, into a format that the Match function can read as a Range?
My current formula is:
=IF(ISNUMBER(MATCH(F1144,_293,0)),C1144,"")
Where "_293" is the Name of the Named Range. (this works)
I would like to place _293 in cell B3 for this formula.
Then edit the formula to use the contents of Cell B3 as its "range" input.
Such as this:
=IF(ISNUMBER(MATCH(F1144,$B$3,0)),C1144,"") (this does not work)
I have been unable to find a way for my formula to interpret the contents of cell B3 an the answer to the "range" input of the Match function. When I evaluate the formula, I do not get a "TRUE" result when I should. Where this evaluation should return "TRUE" it returns "Volatile" instead.
How can I translate the contents of Cell B3, in my new formula, into a format that the Match function can read as a Range?