I have an excel spreadsheet that will be ran on VM's that cannot run VBA code. So, all features have to be created in excel formulas.
=MATCH(INDIRECT("G"&ROW()), LISTS!$C$2:$C$25, 0)
This is the formula I am using with conditional formatting. I need a cell to highlight if any word from a range of cells on second sheet match any portion of current cell. For example. I have "alpha 1b ny" in cell needing format and I have a range that contains "alpha, bravo, Charlie, delta". This should highlight because alpha matches. With above formula if cell only contains alpha it will highlight. If it contains anything else it is ignored. I've tried adding "*" before and after indirect("G"&row()). Any help would be greatly appreciated.

