Checkbox into a textbox

G

Guest

I have a field in a form called "other" on that field, I would want a
checkbox so that when the user adds information in the field "other" they can
check a box next to that field, so that I can keep track of that field.
Anyone know how?
 
A

Al Campagna

jac007
It would be redundant to enter a value in Other, and then set a checkbox to True to
indicate that there is an Other value.
The presence, or non-presence of a value in Other is all that's needed.
A query to find all records with Other would just have a criteria of Is Not Null.
 
G

Guest

I see your point, but then how would I add the "other" field with the fields
that have a checkbox? I have a query that is like this: Total:
Abs([field1]+[field2]+[field3]..and so on. I want to add the other field that
that query but only if there is data in that field. How can I do this?
 
A

Al Campagna

jac007
Given that each of the fields is numeric.
Abs(NZ(Field1) + Nz(Field2) + ...etc)
--
hth
Al Campagna
Candia Computer Consulting - Candia NH
http://home.comcast.net/~cccsolutions

jac007 said:
I see your point, but then how would I add the "other" field with the fields
that have a checkbox? I have a query that is like this: Total:
Abs([field1]+[field2]+[field3]..and so on. I want to add the other field that
that query but only if there is data in that field. How can I do this?

Al Campagna said:
jac007
It would be redundant to enter a value in Other, and then set a checkbox to True to
indicate that there is an Other value.
The presence, or non-presence of a value in Other is all that's needed.
A query to find all records with Other would just have a criteria of Is Not Null.
--
hth
Al Campagna
Candia Computer Consulting - Candia NH
http://home.comcast.net/~cccsolutions
 
G

Guest

That didn't work. So does somebody know how to have a checkbox with a textbox?

Al Campagna said:
jac007
Given that each of the fields is numeric.
Abs(NZ(Field1) + Nz(Field2) + ...etc)
--
hth
Al Campagna
Candia Computer Consulting - Candia NH
http://home.comcast.net/~cccsolutions

jac007 said:
I see your point, but then how would I add the "other" field with the fields
that have a checkbox? I have a query that is like this: Total:
Abs([field1]+[field2]+[field3]..and so on. I want to add the other field that
that query but only if there is data in that field. How can I do this?

Al Campagna said:
jac007
It would be redundant to enter a value in Other, and then set a checkbox to True to
indicate that there is an Other value.
The presence, or non-presence of a value in Other is all that's needed.
A query to find all records with Other would just have a criteria of Is Not Null.
--
hth
Al Campagna
Candia Computer Consulting - Candia NH
http://home.comcast.net/~cccsolutions

I have a field in a form called "other" on that field, I would want a
checkbox so that when the user adds information in the field "other" they can
check a box next to that field, so that I can keep track of that field.
Anyone know how?
 

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