Msgbox display data from table

  • Thread starter Thread starter Shane
  • Start date Start date
S

Shane

How do I get a message box to display data from a field
in my table. For instance:

msgbox "I have [field] dollars in my account"

Thanks
 
Shane,
I take it that [field] contains the value you want in the MsgBox

Use "Concatenation" in your MsgBox Prompt...

MsgBox "I have " & [field] & " dollars in my account.", ......etc.....
 
Shane,
Just write msgbox "I have " & Form.Controls("YourField") & " in my account".

----- Shane wrote: -----

How do I get a message box to display data from a field
in my table. For instance:

msgbox "I have [field] dollars in my account"

Thanks
 
Back
Top