Hi, I have the following Q:
SELECT LISTE_CONFORMITE_HISTO_DETAIL.*, LISTE_CONFORMITE_HISTO_DETAIL.AUTRES_MOIS
FROM LISTE_CONFORMITE_HISTO_DETAIL
WHERE (((LISTE_CONFORMITE_HISTO_DETAIL_MOIS.AUTRES_MOIS)=[Forms]![CONFORMITE_HISTO_LISTE].[cboFiltreMois]![Value]));
When thew query is being execute it is always asking for a value, the value is coming from a control in the form. Since I have been away from MSAccess for too long I am not sure about the proper syntax
What shouls it be
forms!FormName.ControlName! and then what ? I have tried the cbo.value and the field name of the rowsource of the control but no success
Any solution is much appreciated
SELECT LISTE_CONFORMITE_HISTO_DETAIL.*, LISTE_CONFORMITE_HISTO_DETAIL.AUTRES_MOIS
FROM LISTE_CONFORMITE_HISTO_DETAIL
WHERE (((LISTE_CONFORMITE_HISTO_DETAIL_MOIS.AUTRES_MOIS)=[Forms]![CONFORMITE_HISTO_LISTE].[cboFiltreMois]![Value]));
When thew query is being execute it is always asking for a value, the value is coming from a control in the form. Since I have been away from MSAccess for too long I am not sure about the proper syntax
What shouls it be
forms!FormName.ControlName! and then what ? I have tried the cbo.value and the field name of the rowsource of the control but no success
Any solution is much appreciated