S
Shawn
Hi all, simple question here: How do you store a calculated value as a
temporary name/variable and reuse it by calling that variable instead of
doing the calculation again? For example, is it possible to shorten
something like:
IF(ISNUMBER(VLOOKUP(A1,A:B,2)),VLOOKUP(A1,A:B,2),"N/A")
into something like this:
IF(ISNUMBER(variable=VLOOKUP(A1,A:B,2)),variable,"N/A")
Thanks.
temporary name/variable and reuse it by calling that variable instead of
doing the calculation again? For example, is it possible to shorten
something like:
IF(ISNUMBER(VLOOKUP(A1,A:B,2)),VLOOKUP(A1,A:B,2),"N/A")
into something like this:
IF(ISNUMBER(variable=VLOOKUP(A1,A:B,2)),variable,"N/A")
Thanks.