Dear all,
Probably this is a stupid question but I'm new to access.
I am trying to select from "Ora" column in the table (picture attached) values between 18 and 6. All my filtering works until here. "Ora" is defined as integer, data is inserted into the table by an external app. I cannot modify this field as the external app cannot send the date/time in a different format.
Istoric_Turnari - the table that i am trying to query
Forms!Rap_Tura! An_cal - the selected year inside Rap_Tura form
etc etc
I am trying this(one of the many sollutions that I tried):
SELECT *
FROM Istoric_Turnari IN 'C:\Istoric.mdb '
WHERE Istoric_Turnari .An=Forms!Rap_T ura!An_cal And Istoric_Turnari .zi Between 7 And 8 And Istoric_Turnari .ora>=18 And Istoric_Turnari .ora<=6;
Probably this is a stupid question but I'm new to access.
I am trying to select from "Ora" column in the table (picture attached) values between 18 and 6. All my filtering works until here. "Ora" is defined as integer, data is inserted into the table by an external app. I cannot modify this field as the external app cannot send the date/time in a different format.
Istoric_Turnari - the table that i am trying to query
Forms!Rap_Tura! An_cal - the selected year inside Rap_Tura form
etc etc
I am trying this(one of the many sollutions that I tried):
SELECT *
FROM Istoric_Turnari IN 'C:\Istoric.mdb '
WHERE Istoric_Turnari .An=Forms!Rap_T ura!An_cal And Istoric_Turnari .zi Between 7 And 8 And Istoric_Turnari .ora>=18 And Istoric_Turnari .ora<=6;
Comment