Hey Smart-Heads,
I would like to create a validation formula for a cell with manual inputs.
ASIN Position on SAD - column which initially is blank, later updated manually by the user
ASIN Position on SAD - Number Check - column which checks the inputs provided. Values and scenarios:
YES = 1) ASIN Position on SAD is not blank and 2) ASIN Position on SAD is number
NO = 1) ASIN Position on SAD is not blank and 2) ASIN Position on SAD is NOT number
BLANK = 1) ASIN Position on SAD is blank
So far I have formula for isnumber:
=IF(ISNUMBER([ASIN Position on SAD]@row), "YES", "NO")
Tried to merge into one (without blank scenario):
=IF(AND(NOT(ISBLANK([ASIN Position on SAD]@row)), ISNUMBER([ASIN Position on SAD]@row), "YES", "NO"))
Thanks in advance for great as always support!
Romano