When you go to each section, there is nothing to prevent the code from continuing to the next section; that is, if you GoTo Brittney:, the last line is this:
Me.VehicleVIN = Forms!AlioFront!VehicleVIN
The next line, though, is this:
Morgan:
so that it continues with Morgan when done with Brittany.
Unless that is what you want, enter an Exit Sub before each label:
At the end of Brittany:
Exit Sub
Morgan:
However, this would all be better using a SELECT CASE, like this:
Private Sub Command120_Click()
Select Case DriverSource
Case "VICTIM"
DriverNaValue = Forms!AlioBack!FirstLastVictim
DriverAddress = Forms!AlioBack!VictimAddress
DriverCity = Forms!AlioBack!VictimCity
DriverSt = Forms!AlioBack!VictimState
DriverZip = Forms!AlioBack!VictimZip
VehicleMake = Forms!AlioFront!VehicleMake
VehicleModle = Forms!AlioFront!VehicleModel
Text104 = Forms!AlioFront!VehicleStyle
VehicleYear = Forms!AlioFront!VehicleYear
VehicleColorTop = Forms!AlioFront!VehicleColorTop
VehicleColorBottom = Forms!AlioFront!VehicleColorBottom
VehicleTag = Forms!AlioFront!VehicleLicense
VehicleTagState = Forms!AlioFront!LicenseState
VehicleVIN = Forms!AlioFront!VehicleVIN
Case "SUSPECT 1"
DriverNaValue = Forms!AlioBack!FirstLastOffender
DriverAddress = Forms!AlioBack!OffenderAddress
DriverCity = Forms!AlioBack!OffenderCity
DriverSt = Forms!AlioBack!OffenderState
DriverZip = Forms!AlioBack!OffenderZip
DriverPhone = Forms!AlioBack!OffenderPhone
VehicleMake = Forms!AlioFront!VehicleMake
VehicleModle = Forms!AlioFront!VehicleModel
Text104 = Forms!AlioFront!VehicleStyle
VehicleYear = Forms!AlioFront!VehicleYear
VehicleColorTop = Forms!AlioFront!VehicleColorTop
VehicleColorBottom = Forms!AlioFront!VehicleColorBottom
VehicleTag = Forms!AlioFront!VehicleLicense
VehicleTagState = Forms!AlioFront!LicenseState
VehicleVIN = Forms!AlioFront!VehicleVIN
Case "SUSPECT 2"
DriverNaValue = Forms!AlioBack!Offender2FirstLast
DriverAddress = Forms!AlioBack!Offender2Address
DriverCity = Forms!AlioBack!Offender2City
DriverSt = Forms!AlioBack!Offender2State
DriverZip = Forms!AlioBack!Offender2Zip
DriverPhone = Forms!AlioBack!OffenderPhone
VehicleMake = Forms!AlioFront!VehicleMake
VehicleModle = Forms!AlioFront!VehicleModel
Text104 = Forms!AlioFront!VehicleStyle
VehicleYear = Forms!AlioFront!VehicleYear
VehicleColorTop = Forms!AlioFront!VehicleColorTop
VehicleColorBottom = Forms!AlioFront!VehicleColorBottom
VehicleTag = Forms!AlioFront!VehicleLicense
VehicleTagState = Forms!AlioFront!LicenseState
VehicleVIN = Forms!AlioFront!VehicleVIN
Case "WITNESS 1"
DriverNaValue = Forms!AlioBack!Witness2FirstLast
DriverAddress = Forms!AlioBack!Witness2Address
DriverCity = Forms!AlioBack!Witness2City
DriverSt = Forms!AlioBack!Witness2State
DriverZip = Forms!AlioBack!Witness2Zip
DriverPhone = Forms!AlioBack!Witness2PhoneHome
VehicleMake = Forms!AlioFront!VehicleMake
VehicleModle = Forms!AlioFront!VehicleModel
Text104 = Forms!AlioFront!VehicleStyle
VehicleYear = Forms!AlioFront!VehicleYear
VehicleColorTop = Forms!AlioFront!VehicleColorTop
VehicleColorBottom = Forms!AlioFront!VehicleColorBottom
VehicleTag = Forms!AlioFront!VehicleLicense
VehicleTagState = Forms!AlioFront!LicenseState
VehicleVIN = Forms!AlioFront!VehicleVIN
Case "WITNESS 2"
DriverNaValue = Forms!AlioBack!Witness2FirstLast
DriverAddress = Forms!AlioBack!Witness2Address
DriverCity = Forms!AlioBack!Witness2City
DriverSt = Forms!AlioBack!Witness2State
DriverZip = Forms!AlioBack!Witness2Zip
DriverPhone = Forms!AlioBack!Witness2PhoneHome
VehicleMake = Forms!AlioFront!VehicleMake
VehicleModle = Forms!AlioFront!VehicleModel
Text104 = Forms!AlioFront!VehicleStyle
VehicleYear = Forms!AlioFront!VehicleYear
VehicleColorTop = Forms!AlioFront!VehicleColorTop
VehicleColorBottom = Forms!AlioFront!VehicleColorBottom
VehicleTag = Forms!AlioFront!VehicleLicense
VehicleTagState = Forms!AlioFront!LicenseState
VehicleVIN = Forms!AlioFront!VehicleVIN
Case "WITNESS 3"
DriverNaValue = Forms!AlioBack!Witness3FirstLast
DriverAddress = Forms!AlioBack!Witness3Address
DriverCity = Forms!AlioBack!Witness3City
DriverSt = Forms!AlioBack!Witness3State
DriverZip = Forms!AlioBack!Witness3Zip
DriverPhone = Forms!AlioBack!Witness3PhoneHome
VehicleMake = Forms!AlioFront!VehicleMake
VehicleModle = Forms!AlioFront!VehicleModel
Text104 = Forms!AlioFront!VehicleStyle
VehicleYear = Forms!AlioFront!VehicleYear
VehicleColorTop = Forms!AlioFront!VehicleColorTop
VehicleColorBottom = Forms!AlioFront!VehicleColorBottom
VehicleTag = Forms!AlioFront!VehicleLicense
VehicleTagState = Forms!AlioFront!LicenseState
VehicleVIN = Forms!AlioFront!VehicleVIN
End Select
End Sub
so I would probably use a SELECT CASE instead of all the