I have one workbook with data in it. Column C may or may not have a “b” in it. If it does I need to make a cell in another worksheet in another workbook yellow.
Range(“C235:C244″).select ‘in workbook 2
Application.ReplaceFormat.Interior.ColorIndex = 36 ‘in workbook 1
Selection.Replace What:=”b”, ‘in workbook 2
Where do I change back and forth from one worksheet to another? Thank you for the help.