W
wmjenner
I have the following formula:
if($k1<>0,vlookup(indirect("f1"),Sheet2!$A$5:$c$600,2,false," ").
The lookup value (f1) changes constantly via copy/paste which result
in an #REF error whenever the data in column K is updated. That's th
reason for using the Indirect formula.
Now I've discovered the same problem with $k1. When I copy/paste t
update the values in column K (the lookup source), then this formul
returns an #REF error. So now I want to replace If($k1<>0) wit
If(indirect("k1")<>0 so that it will evaluate whatever is in field k
and not try to second-guess how it got there.
The problem, however, is that there are about 1,000 lines in column
with this formula. Is there a way to either edit/replace or write
simple macro? I tried to do it in pieces but Excel doesn't seem t
like replacing things with elements that create invalid formulas.
Any ideas? Thanks!
Bil
if($k1<>0,vlookup(indirect("f1"),Sheet2!$A$5:$c$600,2,false," ").
The lookup value (f1) changes constantly via copy/paste which result
in an #REF error whenever the data in column K is updated. That's th
reason for using the Indirect formula.
Now I've discovered the same problem with $k1. When I copy/paste t
update the values in column K (the lookup source), then this formul
returns an #REF error. So now I want to replace If($k1<>0) wit
If(indirect("k1")<>0 so that it will evaluate whatever is in field k
and not try to second-guess how it got there.
The problem, however, is that there are about 1,000 lines in column
with this formula. Is there a way to either edit/replace or write
simple macro? I tried to do it in pieces but Excel doesn't seem t
like replacing things with elements that create invalid formulas.
Any ideas? Thanks!
Bil