traversing through a filtered range based on another filtered range

Z

zestpt

i have two filtered ranges that i'm going through that are in the sam
worksheet. they are just different columns in the worksheet. i'm tryin
to put this into code

if a value is found in filteredrange1 then goto the same row i
filteredrange2 and copy its value

right now i can go through filteredrange1 a row at a time, but i wan
to go through both filteredranges the same row at the same time

this is the code that i'm using so far, which does not work because th
if the rows in filteredrange2 aren't together testvar will be som
hidden data that shouldn't be used
-----------------------------------
dim filteredrange1 as range
dim filteredrange2 as range
dim counter as integer
dim testvar as string

counter =0

'Traverse range and get value
For Each rng In filteredrange1
If rng = "Value" Then

testvar = filteredrange2(counter)

counter = counter + 1

msgbox testvar

Next rng
 
T

Tom Ogilvy

just refer to the the cell relative to the cell in the filterrange1

For Each rng In filteredrange1
If rng = "Value" Then

testvar = rng.offset(0,10)
msgbox testvar
End if
Next

change the 10 to reflect the offset from the filteredrange1 column.
 
Z

zestpt

thats so simple i wish i had through of it. what would i do if the tw
ranges weren't on the same worksheet or workbook even
 
T

Tom Ogilvy

testvar =
Workbooks("Book2.xls").Worksheets("Sheet2").Cells(rng.row,"C").Value

to get a value from column C of sheet2 of Book2.xls for the same row.
 
Z

zestpt

thanks tom, one thing though. what if the rows don't match but the tw
filtered ranges have the same numbre of rows. how can i travers
through both of them at the same time to and compare values withou
using a counter for one of them
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top