G
Gary Keramidas
on one sheet, i want to concatenate 3 cells, say c2,d2,e2 (strToFind)and then
search for that string on another sheet in columns b,c and d concatenated.
what is the syntax for the find?
strToFind = ws.Range("C" & irow) & ws.Range("D" & irow) & ws.Range("E" & irow)
Set rngfound = ws2.Range("B2
" & nextrow).Find(What:=strToFind, _
LookIn:=xlValues, lookat:=xlWhole)
search for that string on another sheet in columns b,c and d concatenated.
what is the syntax for the find?
strToFind = ws.Range("C" & irow) & ws.Range("D" & irow) & ws.Range("E" & irow)
Set rngfound = ws2.Range("B2

LookIn:=xlValues, lookat:=xlWhole)