dvlarsen619
Programmer
I just can't quite get the quotes right on this. Can somebody please help me? I am sure it is the "Double then Single Quotations" where the problem is. Thank you.
strSQL1 = "INSERT INTO tblRateZoneCharges(RateZoneID, ChargeID)" _
& " VALUES (" & Me!RateZoneID & "," _
& "'AT'" & " ')"
strSQL2 = "INSERT INTO tbl_RateZoneCharges(RateZoneID, ChargeID)" _
& " VALUES (" & Me!RateZoneID & "," _
& "'BA'" & "')"
strSQL3 = "INSERT INTO tbl_RateZoneCharges(RateZoneID, ChargeID)" _
& " VALUES (" & Me!RateZoneID & "," _
& "'DX'" & "')"
strSQL1 = "INSERT INTO tblRateZoneCharges(RateZoneID, ChargeID)" _
& " VALUES (" & Me!RateZoneID & "," _
& "'AT'" & " ')"
strSQL2 = "INSERT INTO tbl_RateZoneCharges(RateZoneID, ChargeID)" _
& " VALUES (" & Me!RateZoneID & "," _
& "'BA'" & "')"
strSQL3 = "INSERT INTO tbl_RateZoneCharges(RateZoneID, ChargeID)" _
& " VALUES (" & Me!RateZoneID & "," _
& "'DX'" & "')"