I have searched high and low for the answer to this question, and yet, nothing...
I have a tabular form, which is being populated by a query. One of my fields is unbound, and is derived based upon values of a couple other fields. If my recordset is:
Name Address1 Address2 City State
------- ------------- ------------ ----- ------
John 128 Easy St. Suite 202 Chicago IL
Joe 253 Wilson Ave. Apt. 3 Milwaukee WI
and I have a single address field on my form, I would expect to see:
Name Address City State
------- ---------- ---- ------
John 128 Easy St. Suite 202 Chicago IL
Joe 253 Wilson Ave. Apt. 3 Milwaukee WI
What I get is:
Name Address City State
------- ---------- ---- ------
John 128 Easy St. Suite 202 Chicago IL
Joe 128 Easy St. Suite 202 Milwaukee WI
Trying to address this problem in the OnCurrent() event of the form would work fine, but when you have 1000 records, who wants to click through each and everyone of them to get the Address field to calculate itself correctly?
BTW, this is an example, this is only to illustrate my problem. Concatenating my two or three database fields into one single field in the table is not at all an option.
I do appreciate any help you can give me.
I have a tabular form, which is being populated by a query. One of my fields is unbound, and is derived based upon values of a couple other fields. If my recordset is:
Name Address1 Address2 City State
------- ------------- ------------ ----- ------
John 128 Easy St. Suite 202 Chicago IL
Joe 253 Wilson Ave. Apt. 3 Milwaukee WI
and I have a single address field on my form, I would expect to see:
Name Address City State
------- ---------- ---- ------
John 128 Easy St. Suite 202 Chicago IL
Joe 253 Wilson Ave. Apt. 3 Milwaukee WI
What I get is:
Name Address City State
------- ---------- ---- ------
John 128 Easy St. Suite 202 Chicago IL
Joe 128 Easy St. Suite 202 Milwaukee WI
Trying to address this problem in the OnCurrent() event of the form would work fine, but when you have 1000 records, who wants to click through each and everyone of them to get the Address field to calculate itself correctly?
BTW, this is an example, this is only to illustrate my problem. Concatenating my two or three database fields into one single field in the table is not at all an option.
I do appreciate any help you can give me.