I'm trying to search a cell for either "(C)" or "(M)" and return "Express" or "Metro" else "Main"
so far this doesnt work
Can anyone help
so far this doesnt work
Code:
=IF(FIND("(C)",Table1[[#This Row],[Product]])>0,"Express",IF(FIND("(M)",Table1[[#This Row],[Product]])>0,"Metro","Main"))
Can anyone help