I have this form:

And the data from this form will be transferred to this table:

I have this code for that:
Code:
Set db = CurrentDb
Set rs = db.OpenRecordset("tblOfferte")
With rs
.AddNew
!Bezeichnung_1 = Me!Bezeichnung1
!Einheit_1 = Me!Einheit1
!Anzahl_1 = Me!Anzahl1
'!Per_1 = Me!Per1'
!Einheitspreis_1 = Me!Total1
!Summe_1 = Me!Summe1
.Update
End With
rs.Close
Set rs = Nothing
db.Close
Set db = Nothing
But I don't know how to make it so that when the user clicks on the radio button "Per" in the form, it is ticked in the table at "Per_1". How should I solve this?