Thanks, Chuck - however...
Now that I look at it closer... it's become more of a problem. Let me try
to explain...
Two worksheets: 1) Solution, 2) Services
The Solution worksheet has details about some services that are being
reported on. I need to copy part of the information from the Solution
worksheet to the Services worksheet based on criteria of one cell equaling
"ACS".
I'm needing to find certain rows that contain particular values: In the
range Solution!E36:E45, if any of the cells equal the value "ACS", I need to
copy the value in Solution!C# (where # is the same row) to Service:C8 cell,
and I need to copy the value in Solution !D# (where # is the same row) to
Service D8.
I need to copy this logic through 10 ranges in the Solution worksheet.
So...
If Solution!E36 = "ACS", copy Solution!C36 to Service!C8 and Solution!D36 to
Service!D8.
If Solution!E37 = "ACS", copy Solution!C37 to Service!C9 and Solution!D37 to
Service!D9.
If Solution!E38 = "ACS", copy Solution!C38 to Service!C10 and Solution!D38
to Service!D9.
Once the range Solution!E36:E45 has been processed, I need to repeat the
search through multiple ranges...
Solution!E45:E58
Solution!E62:E71
Solution!E88:E97
Solution!E101:E110
Solution!E114:E123
etc..... through
Solution!E192:E201
In the Services worksheet, I'm filling the range C8

20... so the data
coming from the Solution worksheet is being plugged into these two columns
and 13 columns. The ranges correspond to each other like this:
Search Solution!E36:E45 --> Copy to Services!C8

8
Search Solution!E49:E58 --> Copy to Services!C9

9
Search Solution!E62:E71 --> Copy to Services!C10

10
Search Solution!E75:E84 -- > Copy to Services!C11

11
etc through
Search Solution!E192:E201 -- >> Copy to Services!C20

20
Any ideas? I've used some VBA code before, but I'm not an expert. Most of
what I used has been taken from this web site (either through questions I've
asked myself, or by adapting responses to other people).
Thanks.