I have a situation where I need to create a validation formula that limits length of entry to 30 characters or less, is all upper case and the end of the entry be the letters "ET" if the value of another cell is equal to "Y".
I have already worked out the formula for the combination of length and case to be:
=AND(LEN(V4)<=30,EXACT(V4,UPPER(V4)))
where V4 the cell the validation is for but not sure how to add the part about forcing the last two letters of the entry to be ET if the value of cell K4 is Y.
Any suggestions as to whether this can be done? Thanks in advance for any suggestions.
I have already worked out the formula for the combination of length and case to be:
=AND(LEN(V4)<=30,EXACT(V4,UPPER(V4)))
where V4 the cell the validation is for but not sure how to add the part about forcing the last two letters of the entry to be ET if the value of cell K4 is Y.
Any suggestions as to whether this can be done? Thanks in advance for any suggestions.