Stopping Excel from editing my Formulas

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to get excel to stop automatically editing my formulas when I
delete cells. Like right now I have a two lists of data and I'm going through
to find the same data points between the lists. So I have on list in column B
and one in column C. So my formula in column D is =if(B1=C1, "TRUE") but
every time I go to delete cells from column C and move them to the top my
formula changes to =if(B1=!REF, "True") and if I deleted say one cell the
next line row in column D the formula will be =if(B2=C1, "TRUE") How Can I
stop Excel from doing this?
 
Wrap each cell reference in INDIRECT

=INDIRECT("A2")

will not return an error
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top