V
viper
I need a way to prompt the user for a piece of information that will populate a text box on a subform. I thought I could prompt a field in a query which then could fill the box. There is only one (1) field in the query with a prompt of "Enter the current princple amount". The prompt shows up and the user is able to type the info in the prompt however the results do not show up anywhere.
Dim vTemp As String 'Declaring variable here
vTemp = DLookup("Nz[Currency01]", "QryPrinAmt")
Me![Currency01] = vTemp
The subform is bound and the field (Currency01) is part of the data source.Any help would be appreciated.
Dim vTemp As String 'Declaring variable here
vTemp = DLookup("Nz[Currency01]", "QryPrinAmt")
Me![Currency01] = vTemp
The subform is bound and the field (Currency01) is part of the data source.Any help would be appreciated.