[Solved] Macro/Function to find a string in a column and find it in a sentence in sheet 2 and return respective value in column 3
First we will dim the variable Dim Rws As Long, Rng As Range, a As Range Dim Rws2 As Long, rng2 As Range, c As Range Dim sh As Worksheet, ws As Worksheet We need to set the worksheets before we set the ranges Set sh = Sheets(“Sheet1”) Set ws = Sheets(“Sheet2”) Set the range … Read more