I am trying to select data from a range of data using an If STATEMENTS, is
this possible please see below:
I am trying to return 10 columns of data if a uique number is found in a
spreasheet for example
005
006
007
008
if sheets1.cells(r,1) = "007" then
sheets2.cells(r,1) = sheets1.cells(r,1)
sheets2.cells(r,2) = sheets1.cells(r,2)
sheets2.cells(r,3) = sheets1.cells(r,3)
End if
Bookmarks