-
Let's say x= 25 and Cell A25 on the Detail Report sheet contains $L$38
Worksheets("As Built").Range(Sheets("Detail Report").Range("A" & x).Value).Offset(, -3).Value
becomes:
Worksheets("As Built").Range(Sheets("Detail Report").Range("A" & 25).Value).Offset(, -3).Value
becomes:
Worksheets("As Built").Range(Sheets("Detail Report").Range("A25").Value).Offset(, -3).Value
becomes:
Worksheets("As Built").Range("$L$38").Offset(, -3).Value
offset(,-3) means 3 cells to the left so it becomes:
Worksheets("As Built").Range("$I$38").Value
p45cal
Everyone: If I've helped and you can't be bothered to acknowledge it, I can't be bothered to look at further posts from you.
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules