C chrlwhttkr New member Local time Today, 10:48 Joined Dec 10, 2021 Messages 7 Dec 14, 2021 #1 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
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
theDBguy I’m here to help Staff member Local time Today, 02:48 Joined Oct 29, 2018 Messages 22,771 Dec 14, 2021 #2 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...
C chrlwhttkr New member Local time Today, 10:48 Joined Dec 10, 2021 Messages 7 Dec 14, 2021 #3 theDBguy said: Hi. Rather than a Label, try using an unbound Textbox and use the following Control Source. Code: =from_date Hope that helps... Click to expand... 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
theDBguy said: Hi. Rather than a Label, try using an unbound Textbox and use the following Control Source. Code: =from_date Hope that helps... Click to expand... 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
theDBguy I’m here to help Staff member Local time Today, 02:48 Joined Oct 29, 2018 Messages 22,771 Dec 14, 2021 #4 chrlwhttkr said: 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 Click to expand... 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
chrlwhttkr said: 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 Click to expand... 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