Hello Kistler,
This macro will copy the information to the other sheet when an OptionButton is selected. This macro is to be copied in the Worksheet's module for the worksheet that the option buttons are on.
Sub Sumbit2()
Dim R As Long
Dim Rng As Range
Dim Wks As Worksheet
Set Rng = ActiveSheet.Range("C4:F4")
Set Wks = Worksheets("Office")
Select Case Application.Caller
Case Is = "TravelStore": R = 4
Case Is = "Fuel1": R = 5
Case Is = "Fuel2": R = 6
Case Is = "Fuel3": R = 7
Case Else: Exit Sub
End Select
Rng.Copy Destination:=Wks.Range("B" & R, "E" & R)
End Sub
Bookmarks