Macro to copy data from 3 sheets into a fourth sheet
Hello,
I am trying to copy data from 3 separate sheets (Ranges A to E) into a fourth sheet (Final).May I ask the VBA code for it please. So far to copy values from 1 sheet (Electrical) into a separate sheet (Final).
Sor far I have:
- Sub copy_paste()
- Dim SourceRange,DestinationRange as Range
-
- Set SourceRange1=Range("Electrical!A:E")
-
- Set DestinationRange=Range("Final!A:E")
-
- SourceRange.copy
-
- DestinationRange.select
- ActiveSheet.paste
-
-
- End Sub