Hi,
One way would be to set up a query. With SQL of the form
Code:
SELECT option, name, comment
FROM tbl1
WHERE option IN (RS, XO)
UNION ALL
SELECT option, name, comment
FROM tbl2
WHERE option IN (RS, XO)
UNION ALL
SELECT option, name, comment
FROM tbl3
WHERE option IN (RS, XO)
etc, etc for the 30 source tables
Or could do via VBA. Say using simple or advanced filtering, loop through each worksheet and copy desired results to summary page.
Or via VBA by looping through worksheets and process using arrays. Copy data from each sheet to an array, loop through and store wanted results in an array that ultimately is posted to the desired results location.
In all of these I guess you could do the filtering at the end too. Such as grab all data and at the last step filter for the "RS" & "XO", or whatever.
regards,
Fazza