If the field is bound to the table, then the table will change on the fly.
If the field is unbound, then you will have to open the recordset in code, find the desired record (using the "seek" method), and change the field value manually.
Like this:
Dim db As DAO.Database, rst As DAO.Recordset
Set db = CurrentDb
Set rst = db.OpenRecordset("tblRma")
With rst
.Index = "yourFieldToSearch" 'Table Field to Search
.Seek "=", Forms!YourForm!YourControl 'Value to search for
If .NoMatch Then 'Record was not found
MsgBox ("This Record Does Not Exist!!")
Exit Function
Else
'MsgBox ("Found a Match, Your Control = " & !YourControl)
End If
.Edit
!YourField = Forms![YourForm]![YourField] 'set the table field equal to the new form value
.Update
End With
Good luck