Krulle1000
New Member
- Joined
- Feb 25, 2016
- Messages
- 15
Hello,
I'm trying to use data validation to validate if the user provides a 8 digit HEX value.
In example data validation in cell K2:
Allow: Custom
Formula: =AND(LEN(K2)= 8;ISNUMBER(HEX2DEC(K2)))
This works but I can't manage to replace the formula with ROW() in order to use it for all my data validation cells.
Formula: =AND(LEN(INDIRECT("K"&ROW()))= 8;ISNUMBER(HEX2DEC(INDIRECT("K"&ROW()))))
Excel returns next error: 'The Formula currently evaluates to an error'
What is wrong here?
I'm trying to use data validation to validate if the user provides a 8 digit HEX value.
In example data validation in cell K2:
Allow: Custom
Formula: =AND(LEN(K2)= 8;ISNUMBER(HEX2DEC(K2)))
This works but I can't manage to replace the formula with ROW() in order to use it for all my data validation cells.
Formula: =AND(LEN(INDIRECT("K"&ROW()))= 8;ISNUMBER(HEX2DEC(INDIRECT("K"&ROW()))))
Excel returns next error: 'The Formula currently evaluates to an error'
What is wrong here?