Dynamic Label

  • Thread starter Thread starter Will S via AccessMonster.com
  • Start date Start date
W

Will S via AccessMonster.com

Hello....
I am looking for a way to have a label on a form dynamically updated based
upon a variable from another forms unbound textbox. I have tried something
like this but obviously it is not working...


Enter Daily Rate as of '" & [forms]![formname]![text20] & "'

Thanks in advance...
 
Try change the name of your text box to something that makes sense such as
"txtDailyRate" and then use a control source of:
="Enter Daily Rate as of " & [forms]![formname]![txtDailyRate]
 
Duane said:
Try change the name of your text box to something that makes sense such as
"txtDailyRate" and then use a control source of:
="Enter Daily Rate as of " & [forms]![formname]![txtDailyRate]
Hello....
I am looking for a way to have a label on a form dynamically updated based
[quoted text clipped - 4 lines]
Thanks in advance...


Thanks!!!
 
Back
Top