Is it possible to have a cell in an IF statement populate text if it is not in the following format ABC_12345 (ie Letter, letter, letter, underscore, number, number, number, number, number)
The same three letters will always start the format, then always an underscore, then a 5 digit number, the first will always be a 1.
If it is in any other format, or additional characters such as brackets etc are added, i need a message displayed
This needs to be in a formula, rather than using Data Validation, or conditional formatting etc, as for some reason the programme the spreadsheet is uploaded into doesn't like that!
So, I need something that basically is
- with the emphasis of the TRUE bit being if it does not match
The same three letters will always start the format, then always an underscore, then a 5 digit number, the first will always be a 1.
If it is in any other format, or additional characters such as brackets etc are added, i need a message displayed
This needs to be in a formula, rather than using Data Validation, or conditional formatting etc, as for some reason the programme the spreadsheet is uploaded into doesn't like that!
So, I need something that basically is
Excel Formula:
= IF(C2<>"ABC_12345,"Wrong format","Correct format")