I just reformatted the sql
Code:
SELECT Event_Name
, Event_Month
, Event_Day
, Event_Year
, Event_Partner_Organization
, Event_Fiscal_Year
, Event_FiN_Participation
FROM Event_Main
WHERE
Event_Name Like "*" & Nz([Forms]![Search_Form]![txtEventName],"") & "*" AND
Event_Month Like "*" & Nz([Forms]![Search_Form]![txtMonth],"") & "*" AND
Event_Day Like "*" & Nz([Forms]![Search_Form]![txtDay],"") & "*" AND
Event_Year Like "*" & Nz([Forms]![Search_Form]![txtCalenderYear],"") & "*" AND
Event_Partner_Organization Like "*" & Nz([Forms]![Search_Form]![txtOrganizer],"") & "*" AND
Event_Fiscal_Year Like "*" & Nz([Forms]![Search_Form]![txtFiscalYear],"") & "*" AND
Event_FiN_Participation Like "*" & Nz([Forms]![Search_Form]![txtParticipation],"") & "*";
You have AND operators, indicating every search term should be used. Have you tried replacing the ANDs with ORs to see if that's what you're looking for?
There is a tutorial that may be helpful at http://www.datapigtechnologies.com/f...earchform.html