The key field ("BusinessName"
is entered/appears on the first form, and is needed throughout the app, but I don't want to keep first form open. I've tried declaring it as Global, but don't know how so it doesn't work. Is that the right approach?
This is what works now, but it requires "Form1" to remain open all the time. Each form uses a different table with BusinessName as the key, and the reports use queries.
If IsNull(Me!BusinessName) Then
Me!BusinessName = Forms("Form1"
! BusinessName.Value
End If
This is what works now, but it requires "Form1" to remain open all the time. Each form uses a different table with BusinessName as the key, and the reports use queries.
If IsNull(Me!BusinessName) Then
Me!BusinessName = Forms("Form1"
End If