I'm trying to set a text field on a form using a field from the recordsource called 'name'.
Setting the control source to...
code works correctly, showing the code field, and
name also works correctly, showing the name field, but
=code & " " & name returns the correct code field, and then the name of the form (eg frmForm1)
Writing the full field names...
=[module]!
Setting the control source to...
code works correctly, showing the code field, and
name also works correctly, showing the name field, but
=code & " " & name returns the correct code field, and then the name of the form (eg frmForm1)
Writing the full field names...
=[module]!
Code:
& " " & [module]![name]
produces #error... and removes the square brackets. This seems a little strange!
How should I sort this one out?!
thanks in advance