I need some advise on a excel file I'm putting together. I want to have a cell copy the content from another cell in a different sheet if a third cell contains a specific text string. I know it sounds confusing so to ellaborate.
Spreadsheet ALPHA on cell A3 should copy or reference the content in Spreadsheet BRAVO A3 if the cell D3 on spreadsheet BRAVO contains the text HOT.
Your expert insight is most appreciated.
Thanks in advanced ;)
Tried and Tested: Alpha A3 Cell formula:
For Case Sensitive Match:
For Case In-Sensitive Match:
Try this in Alpha!A3,
=IF(ISNUMBER(SEARCH("hot", Bravo!D3)), Bravo!A3, "")
If you want to copy or reference cell A3 of ALPHA in cell A3 of BRAVO if D3 of BRAVO contains text "HOT" then try the below formula in BRAVO cell A3 :