You refer to the value of a control or property in an expression by typing its identifier.
To refer to the value of a control
Forms![Orders]![OrderID]
Tip If you're referring to a control on a subform or subreport, you don't have to specify the full identifier for the form or report using the Form or Report property. For example, you can use the following identifier to refer to the Quantity control on the Orders Subform subform:
Forms![Orders]![Orders Subform]![Quantity]
To refer to the value of a property
Forms![Orders]![OrderDate].DefaultValue
Notes
For more information on creating an expression using the Expression Builder, click .
For more information on using identifiers in expressions, click .
For more information on using values in expressions, click .
For more information on referring to a form, report, subform, or subreport in an expression, click .