Query not showing records

are you using Text as date field type. becoz' on your posted image it is left align on the datasheet.
In post #7 it shows its Date/Time data type
 
have you already check the Parameter datatype. on the snapshot sql query, I did not see it.
 
Thanks alot.... Its working somewhat now... I guess I need to go back format the report coming from that query since its asking me for parameters now. Does that sound right?
 
have you already check the Parameter datatype. on the snapshot sql query, I did not see it.


No.....:confused: will that cause the report from that query to ask for the parameters of the fields being totaled??
 
Thanks alot.... Its working somewhat now... I guess I need to go back format the report coming from that query since its asking me for parameters now. Does that sound right?
Just make sure the parameters in the query and the controls on the report are spelled the exact same way. Cheers!
 
I know you didn't ask about this and it isn't part of your problem but you might want to think about properly normalizing your table.

You have three columns for types of service:
Sum(IIf([DataT]![Oil & Filiter Change]=Yes,1,0)) AS [Oil Changes],
Sum(IIf([DataT]![General Repair]=Yes,1,0)) AS [General Repairs],
Sum(IIf([DataT]![General Service]=Yes,1,0)) AS [General Services]
When in reality, you should have ONE column which identifies which service was performed. Think about what you would have to change if your boss asked for a new service type.
 

Users who are viewing this thread

Back
Top Bottom