i have 3 blocks of data each consisting of 4 colums f,g,h,i and rows down on sheet 3 and a list of short codes in a drop down box on sheet 1 what i need to happen is when i select fs1 from the drop dowm list and push a comand button then data from the first block is inputed into a different block of cells a have tried this code but i cant get it to work.
Sub Macro4()
'
' Macro4 Macro
'
'
If Range("A46" = FS1) Then
Sheets("Configuration Data").Select
Range("F3:I9").Select
Selection.Copy
Range("A20").Select
ActiveSheet.Paste
Sheets("Input Data (2)").Select
End If
End Sub
Sub Macro4()
'
' Macro4 Macro
'
'
If Range("A46" = FS1) Then
Sheets("Configuration Data").Select
Range("F3:I9").Select
Selection.Copy
Range("A20").Select
ActiveSheet.Paste
Sheets("Input Data (2)").Select
End If
End Sub