I am trying to evaluate data in sheet1 and if it fits a certain criteria, do a little math and move the results to a corresponding row in sheet2.
The data is in rows in sheet 1, and I would like the results to be in rows in sheet2 as well.
My VBA is rudimentary. So far, I've been brute-forcing my way around spreadsheets using ActiveCell.Offset.
But now I want to move around two spreadsheets at once. After evaluating a record in sheet1 and writing to sheet2 I want to move down one row in each.
What method do you recommend for this?
Thank you.