georgesOne
Technical User
Hi,
I have an application with many messages and I would like to store them in a table and call them via a lookup. Some of them contain variables.
So, when I code
sString = "Table " & UCase(Forms!frmTopic.cboTopic) & " is up."
Msgbox sString
it will result in the message
Table Toy is up.
However, if I put it into the table a pull it via the lookup function the resulting message is
Table " & UCase(Forms!frmTopic.cboTopic) & " is up.
How can/should I handle this correctly?
Many thanks in advance, Georges
I have an application with many messages and I would like to store them in a table and call them via a lookup. Some of them contain variables.
So, when I code
sString = "Table " & UCase(Forms!frmTopic.cboTopic) & " is up."
Msgbox sString
it will result in the message
Table Toy is up.
However, if I put it into the table a pull it via the lookup function the resulting message is
Table " & UCase(Forms!frmTopic.cboTopic) & " is up.
How can/should I handle this correctly?
Many thanks in advance, Georges