Multiple items in text box on a form?

S

Shakobe13

I want a text box to display items from a table and text together?

so the MainTable collects quantity, color and price which is enter through
antother form.

I want a text box to display....

"You have chosen 8 red widgets at $4.00 each"

the 8, red and $4.00 getting pulled form a table.

can I do this? please help.

Thanks
 
J

John W. Vinson

I want a text box to display items from a table and text together?

so the MainTable collects quantity, color and price which is enter through
antother form.

I want a text box to display....

"You have chosen 8 red widgets at $4.00 each"

the 8, red and $4.00 getting pulled form a table.

can I do this? please help.

Thanks

Sure. It's simpler to have three textboxes (for the quantity, item and price),
but you can set the control source of a textbox to an expression like

= "You have chosen " & [Quantity] & " " & [Color] & " at " &
Format([UnitPrice], "currency") & " each"
 
S

Shakobe13

Thank you very much.

John W. Vinson said:
I want a text box to display items from a table and text together?

so the MainTable collects quantity, color and price which is enter through
antother form.

I want a text box to display....

"You have chosen 8 red widgets at $4.00 each"

the 8, red and $4.00 getting pulled form a table.

can I do this? please help.

Thanks

Sure. It's simpler to have three textboxes (for the quantity, item and price),
but you can set the control source of a textbox to an expression like

= "You have chosen " & [Quantity] & " " & [Color] & " at " &
Format([UnitPrice], "currency") & " each"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top