9tanstaafl9
Well-known Member
- Joined
- Mar 23, 2008
- Messages
- 535
Apparently the Backspace key and the Delete key are not the same. Who knew?
I have a spreadsheet with zeroes in cells that should NOT be deleted. The user needs to be able to change the cell value to a number if they want to, but they cannot enter text, or more importantly, they must not delete the zero.
Is there any way to do this? I had thought I had it covered with a data validation rule, but that only stopped users from using the backspace key. For some reason the delete key works just fine and bypasses my data validation entirely.
Here is the rule I tried to use:
Any suggestions would be appreciated!
I have a spreadsheet with zeroes in cells that should NOT be deleted. The user needs to be able to change the cell value to a number if they want to, but they cannot enter text, or more importantly, they must not delete the zero.
Is there any way to do this? I had thought I had it covered with a data validation rule, but that only stopped users from using the backspace key. For some reason the delete key works just fine and bypasses my data validation entirely.
Here is the rule I tried to use:
Code:
=AND(ISNUMBER(G169),G169<>"")
Any suggestions would be appreciated!