jissididi
Automotive
- Mar 17, 2015
- 46
Hi everybody,
I made a macro exporting data (drawingtexts) into a newly created excelsheet "wbk1"
I want to make a check with another workbook ("wbk2") to find if the text I exported in my "wbk1" exists in "wbk2".
I need to use the
method (because I want an exact match) but it does not work.
Do you have an idea of what could be the problem ?
PS : when I use
alone, it works but it also find me other cells in which ones the string is containing the text I'm looking for : but I dont want that.
Thanks in advance
Jissi
I made a macro exporting data (drawingtexts) into a newly created excelsheet "wbk1"
I want to make a check with another workbook ("wbk2") to find if the text I exported in my "wbk1" exists in "wbk2".
I need to use the
Code:
wbk2.usedrange.find(thetext,lookat:=XlWhole)
Do you have an idea of what could be the problem ?
PS : when I use
Code:
wbk2.usedrange.find(thetext)
Thanks in advance
Jissi