Toggle Buttons

  • Thread starter Thread starter mustangric2001
  • Start date Start date
M

mustangric2001

Is there a way to create a Toggle or Command Button that will take data from
two different fields and put them in one field
 
I was able to get both fields in one box now is there a way to put a space
inbetween them.
 
Can you offer any more insight as to what you are trying to accomplish?
Typically, it is not good practice to store the same data redundantly, or to
store calculated values. If you need to combine the values for display
purposes, or as a calculation, you can use a query or an unbound control
on a form, etc.
 
I was able to get both fields in one box now is there a way to put a space
inbetween them.


Set the control source of the control on your form to [Field1] & " " &
[Field2]. Obviously, you need to use the actual names of the fields
that are in the forms record source.
Lynn Trapp
www.ltcomputerdesigns.com
 
Back
Top