gusbrunston
Programmer
Hi.
I tried this months ago, and I didn't know enough about access or VBA to post it in the right forum, or to understand the answers I got. Here goes again...
In a table describing rental properties, I have many check boxes, e.g., "Air-conditioned", "Community Pool", "Extra parking", etc. The company has long used on a report used by leasing agents a concatenated string: " AC CP EP ,etc." to identify features of particular rentals.
At present, after clicking on the check boxes, the user has to type in the corresponding string.
How can I concatenate a string from check box fields in the table... in the table? in a query? on a form? in the report?
Thanks for ideas, or for simply pointing to the area I need to study. In days gone by I would have built an array of two character strings, and put them together with:
Gus Brunston
An old PICKer, using Access2000
gustrel@aol.com
I tried this months ago, and I didn't know enough about access or VBA to post it in the right forum, or to understand the answers I got. Here goes again...
In a table describing rental properties, I have many check boxes, e.g., "Air-conditioned", "Community Pool", "Extra parking", etc. The company has long used on a report used by leasing agents a concatenated string: " AC CP EP ,etc." to identify features of particular rentals.
At present, after clicking on the check boxes, the user has to type in the corresponding string.
How can I concatenate a string from check box fields in the table... in the table? in a query? on a form? in the report?
Thanks for ideas, or for simply pointing to the area I need to study. In days gone by I would have built an array of two character strings, and put them together with:
Code:
StringA = String(1) + " " + String(2) + " " String(3)

gustrel@aol.com