donkey9972
Registered User.
- Local time
- Today, 11:00
- Joined
- May 18, 2008
- Messages
- 121
Hi, I have 2 questions and instead of taking up 2 forum slots I thought maybe a general question post might be best, but I wasn't sure.
So my first question is this. Lets say I have a table with 10 fields in it. Then when I make a query and I want all entries to be in the query, so I drag the Asterisk from the table down into the query, does that count as 1 for the query or 10?
Now my 2nd question is regarding how to add things in a form. I have an unbound control and 3 input fields in the detail section of my form. The unbound field will be where the total of the values will appear. I have been able to get it to add, but only when the form is closed and reopened using this on the unbound field.
Is there anyway to do this directly on the form without moving the unbound field to the footer portion?
So my first question is this. Lets say I have a table with 10 fields in it. Then when I make a query and I want all entries to be in the query, so I drag the Asterisk from the table down into the query, does that count as 1 for the query or 10?
Now my 2nd question is regarding how to add things in a form. I have an unbound control and 3 input fields in the detail section of my form. The unbound field will be where the total of the values will appear. I have been able to get it to add, but only when the form is closed and reopened using this on the unbound field.
Code:
=Sum(([Field1])+([Field2])+([Field3]))