parameter in form

chrlwhttkr

New member
Local time
Today, 10:48
Joined
Dec 10, 2021
Messages
7
I have parameters in a query as from_date and to_date and I want these to be inserted into a label in my form
 
Hi. Rather than a Label, try using an unbound Textbox and use the following Control Source.
Code:
=from_date
Hope that helps...
 
Hi. Rather than a Label, try using an unbound Textbox and use the following Control Source.
Code:
=from_date
Hope that helps...
Hi! It doesn't work for some reason I am taking the parameters in from the form, relating to a query and I can't get it to work
 
Hi! It doesn't work for some reason I am taking the parameters in from the form, relating to a query and I can't get it to work
What does the parameter look like? If it's using a Forms reference, then you can try that instead. For example:
Code:
=Forms!FormName.from_date
 

Users who are viewing this thread

Back
Top Bottom