Hi
See attcahed. I would like a button on cell I1 sheet 3, which copies all the data on sheet 3 to sheet one. The number of rows changes everytime. I want to paste special so just the values.
Hi
See attcahed. I would like a button on cell I1 sheet 3, which copies all the data on sheet 3 to sheet one. The number of rows changes everytime. I want to paste special so just the values.
Sub CopyIt1()
Sheets(Array("Sheet1", "Sheet3")).FillAcrossSheets Sheet1.[a1].CurrentRegion
Sheet3.[a1].CurrentRegion.Value = Sheet3.[a1].CurrentRegion.Value
End Sub