Yes, there are ways around it. It depends on what you are trying to accomplish. If you are just trying to clean up your worksheet, you want to convert your formulas to values so that deleting A,B, or C doesn't give you the #REF.
To do that, simply copy Column D and Paste Special > Values.
If you want to insert or delete columns but you still want your formulas to point to columns A,B and C, then your formula needs to be a little lengthier. You can use INDIRECT or INDEX. I prefer INDEX because it's nonvolatile. Your formula would look something like this
if((INDEX($1:$5000,ROW(),1)+INDEX($1:$5000,ROW(),2)++INDEX($1:$5000,ROW(),3))=0,"true","false")
with INDIRECT
=if((INDIRECT("A"&ROW())+INDIRECT("B"&ROW())+INDIRECT("C"&ROW()))=0,"true","false")
Bookmarks