girapas
Board Regular
- Joined
- Apr 20, 2004
- Messages
- 150
I want to enter a formula in A2 to calculate A1+10, if the B2 has data and if it hasn't to leave the cell blank.
The cells B1 and B2 have formulas that update from other cell.
The following formulas don't work when I use them in A2 (I suppose due to the existence of the formula in B2):
=IF(B2="";"";A1+10)
=IF(B2=0;"";A1+10)
=IF(LEN(B2)=0;"";A1+10)
=IF(ISBLANK(B2);"";A1+10)
How can I resolve it, without using VBA?
Thanks in advance
The cells B1 and B2 have formulas that update from other cell.
The following formulas don't work when I use them in A2 (I suppose due to the existence of the formula in B2):
=IF(B2="";"";A1+10)
=IF(B2=0;"";A1+10)
=IF(LEN(B2)=0;"";A1+10)
=IF(ISBLANK(B2);"";A1+10)
How can I resolve it, without using VBA?
Thanks in advance