Hi there
I'm trying to validate data entered by the user that should be entered into a cell which is pre-defined as being "Text" format in the following way:
hh:mm - hh:mm
Is there any way I can do this as a custom Data Validation using a formula?
I tried using:
and so on for each of the 13 characters required, but there must be a length limit to the formula because it got to the point where I couldn't type any further.
Thanks in advance for any ideas.
Liam
I'm trying to validate data entered by the user that should be entered into a cell which is pre-defined as being "Text" format in the following way:
hh:mm - hh:mm
Is there any way I can do this as a custom Data Validation using a formula?
I tried using:
Code:
=AND(LEFT(F21,1)=OR("0","1","2"),LEFT(F21,2)=OR("0","1","2","3","4","5","6","7","8","9"))
Thanks in advance for any ideas.
Liam