This seems like it should be an easy answer but I've been struggling with it for a while. I haven't been able to see that anyone else addressed it.
I have the following formula:
=IF(AND(V147="YES",V137<0),-V137+(V104+V105+V108+V109+V135)+(V117+V118+V119+V120+V121+V122)+(V125+V126),0)
V137 contains the formula =+V133+V135. (I have tried changing this to =SUM(V133:V135). It made no difference).
Rather than checking if the value in V137 is less than zero, it is checking whether either V133 or V135 is less than zero.
If I change the formula to include the INDIRECT function as follows,
=IF(AND(V147="YES",INDIRECT("V137")<0),-V137+(V104+V105+V108+V109+V135)+(V117+V118+V119+V120+V121+V122)+(V125+V126),0)
it has no effect. It is still comparing V133 and V135 to zero.
I tried taking out the quotation marks around V137. But then, it returns #REF!.
Any thoughts?
Thank you.
I have the following formula:
=IF(AND(V147="YES",V137<0),-V137+(V104+V105+V108+V109+V135)+(V117+V118+V119+V120+V121+V122)+(V125+V126),0)
V137 contains the formula =+V133+V135. (I have tried changing this to =SUM(V133:V135). It made no difference).
Rather than checking if the value in V137 is less than zero, it is checking whether either V133 or V135 is less than zero.
If I change the formula to include the INDIRECT function as follows,
=IF(AND(V147="YES",INDIRECT("V137")<0),-V137+(V104+V105+V108+V109+V135)+(V117+V118+V119+V120+V121+V122)+(V125+V126),0)
it has no effect. It is still comparing V133 and V135 to zero.
I tried taking out the quotation marks around V137. But then, it returns #REF!.
Any thoughts?
Thank you.