Hi Guys, so I have the below Formula where it correctly formats a postcode but now I need it to check the Characters to make sure a Zero (0) is in fact a zero and not a Letter (o)? So a UK Postcode example could be BL1 oLL, so the 'o' in this example would need changing to Zero. As you can imagine it gets more complicated with longer/shorter postcodes! UK postcode formats can be found here: Postcodes in the United Kingdom - Wikipedia.
Thanks in advance!
Excel Formula:
=UPPER(REPLACE(SUBSTITUTE(B5," ",""),LEN(SUBSTITUTE(B5," ",""))-2,0," "))
Thanks in advance!