suggestion or comments needed
Posted by Mindy on September 10, 2001 12:01 PM
Hi
I have a marco which need to do the find event for 2 set of columns for each row.
Ex: rows colA colB colC colD colE colF
1 123 abc 111 222 333 444
2 234 der 000 123 abc 222
the result I am looking for
colA=colD
and
colB=colE
the macro will search something has 123 in colD and abc in colE first. The 234 in colD and der in colE.
I did use the find method
set testfind = .columns("D").find(what:=123)
how can I look for both D and E at same time?
Any suggestion, comments, will be real appriciated.
Thank you in advance