I have some data in a table that is listed like this:
NTC10RM
NTC5RM
TC10RM
TC5RM
I need them to be like this:
NTC-10-RM
NTC-5-RM
TC-10-RM
TC-5-RM
For the NTC/TC part I used LEFT([FieldName], InStr([FieldName], "C")) & "-". For the RM part I know I could use some like RIGHT([FieldName],2)...