Can someone please help with the following.
I am trying to write a formula that tells a user to fill in a cell (that is Blank)so it goes something like this. If cell B20 is blank then "Please complete B20" else "Cell B20 is complete"
The formula looks like this
=IF(ISBLANK(B20),"Please complete B20","Cell B20 is complete")
This works fine. However I need the reference to B20 to be relative rather than fixed in the text, so if someone inserts a row then the B20 reference changes so it would go something like this.
=IF(ISBLANK(B21),"Please complete "& Some code to refer to B21,"Cell "& Some code to refer to B21 &" is complete")
Many Thanks
Paul
I am trying to write a formula that tells a user to fill in a cell (that is Blank)so it goes something like this. If cell B20 is blank then "Please complete B20" else "Cell B20 is complete"
The formula looks like this
=IF(ISBLANK(B20),"Please complete B20","Cell B20 is complete")
This works fine. However I need the reference to B20 to be relative rather than fixed in the text, so if someone inserts a row then the B20 reference changes so it would go something like this.
=IF(ISBLANK(B21),"Please complete "& Some code to refer to B21,"Cell "& Some code to refer to B21 &" is complete")
Many Thanks
Paul