9tanstaafl9
Well-known Member
- Joined
- Mar 23, 2008
- Messages
- 535
I have to copy data from sheet 2 to sheet 1. Sheet 2 has a bunch of hidden columns (I don't know which they will be ahead of time).
This works to paste formulas, but I need values:
I must past values not formulas. IDEALLY I'd paste Values, Formats, Column Widths and Row Heights. But at least getting Values is critical.
Any help would be greatly appecated.
This works to paste formulas, but I need values:
Code:
Sheet2.Range("B8:AM28").SpecialCells(xlCellTypeVisible).Copy Destination:=Sheet1.Range("A12")
I must past values not formulas. IDEALLY I'd paste Values, Formats, Column Widths and Row Heights. But at least getting Values is critical.
Any help would be greatly appecated.