Not as a default in the table.
You could use VBA on any form that uses the table, in the AfterUpdate event of the control for the first field to set the second fields value as the same.
EG
Private Sub Field1_AfterUpdate()
Me.Field2 = Me.Field1
End If