boblarson
Smeghead
- Local time
- Yesterday, 16:39
- Joined
- Jan 12, 2001
- Messages
- 32,059
Well, for one you didn't study what I did too closely did you? I'll post in a bit my version of your code but I need to know what datatypes COID and CUSTOMER NUMBER are and do you plan on typing in the <= part in the total fees difference? It is fine but it requires different handling.
Also, what is the reasoning behind this:
And I really suggest that you rename your controls to something more meaningful than Chk43, chk6, chk2 so it will help you later and anyone that follows on so they don't have to go look to see what it is.
Also, what is the reasoning behind this:
Code:
If ([Forms]![Data_Selections]![Chk43] = True) Then
Set db = CurrentDb
Set qdf = db.QueryDefs("Customer_Data_Requested")
If Text32.Value > "" Then
VarTxt = Text32.Value
End If
And I really suggest that you rename your controls to something more meaningful than Chk43, chk6, chk2 so it will help you later and anyone that follows on so they don't have to go look to see what it is.