Macro to copy data from 3 sheets into a fourth sheet

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:

  1. Sub copy_paste()


  2.     Dim SourceRange,DestinationRange as Range

  3.     

  4.     Set SourceRange1=Range("Electrical!A:E")
  5.     
  6.     Set DestinationRange=Range("Final!A:E")

  7.     

  8.     SourceRange.copy
  9.     
  10.     DestinationRange.select

  11.     ActiveSheet.paste 
  12.     
  13.     

  14. End Sub