F
Fred Smith
I have the following code segment:
Set WorkRange = ...
For Each cell in WorkRange
Taxrow = application.match(cell.value, range("A:A"), 0)
if iserror(taxrow) and cell.offset(0,9) <> "Inactive" then
Now I want to copy the entire row that "cell" is on to the active worksheet
row "LastRow".
Is there one or two lines of code that would do this?
Thanks,
Fred
Set WorkRange = ...
For Each cell in WorkRange
Taxrow = application.match(cell.value, range("A:A"), 0)
if iserror(taxrow) and cell.offset(0,9) <> "Inactive" then
Now I want to copy the entire row that "cell" is on to the active worksheet
row "LastRow".
Is there one or two lines of code that would do this?
Thanks,
Fred