You should be able to set the defaults for the bound controls easily enough by means of a set of unbound controls in the form header, one for each relevant bound control:
In the AfterUpdate event procedure of each unbound control in the header set the DefaultValue property for the corresponding bound control, e.g. for Part
Me.NameOfBoundPartControl.DefaultValue = """" & Me.NameOfUnboundPartControl & """"
Do similarly for the other controls. Note that the DefaultValue property is always a string expression so should be wrapped in literal quotes characters as above, regardless of the data type of the field in question, i.e. for date or number data types as well as text.
I should point out that your table is badly in need of normalization by decomposition into two related tables. By having multiple Measurement# columns the table is not normalized to First Normal Form (1NF), which requires only one value of each attribute to be stored in each row in a table. You should have a separate Measurements table with a foreign key column referencing the primary key of the current table, and a single Measurement column
The appropriate interface would then be to have two correlated subforms in an otherwise empty 'container' form, one equivalent to the current form, but without the Measurement# columns**.** A second subform, also in continuous forms view would be correlated with the first subform by referencing the primary key of the first subform's recordset as a parameter in its RecordSource query. The second subform would be requeried in the Current event procedure of the first subform.
For an example of correlated subforms take a look at CorrelatedSubs.zip in my public databases folder at:
https://onedrive.live.com/?cid=44CC60D7FEA42912&id=44CC60D7FEA42912!169
If you have trouble downloading a specific file, clicking on the 'Download' button at the top of the page while no files are selected should download a zip file of all files in the folder, from which you should then be able to unpack the relevant file.
This little demo file uses Northwind data as its example, correlating an order details subform with an orders subform, both in continuous forms view.