Firstly, sorry if this has been asked before, I've tried searching for
it inthe archive, but with no luck.
-------------------------------------
I'm trying to copy and paste special --> values from various
worksheets to various other worksheets.
It's all going fine apart from a few worksheets which have lots of
hidden rows and columns.
When I make my selection (either by range or by
specialcells(xlCellTypeVisible) and then try to copy the selection I
get a runtime error '1004' "That command cannot be used on multiple
selections".
It would be a slow process, but currently I'm thinking of checking
each column individually to see if it's hidden, if so, log it, unhide
the column. Then repeat for each row.
Then copy ->paste special ->values
then re-hide (or just delete) all the originally hidden columns.
If anyone knows a more efficient way of getting the job done It'd be
appreciated.
(the hidden columns / rows are in different positions on different
worksheets, so I need a generic, reusable solution).