Sorry it took so long to get back to you. Things have been a bit hectic here.
Create a form called "Info Search" that is not bound to any tables. Put a non-bound field on the form labelled and named "Narrative". Then add a button to the form and add the following "event procedure" to the OnClick event.
DoCmd.OpenForm "Info Results", acNormal, "", "[Narrative] Like '*' & [Forms]![Info Search]![Narrative] & '*' Or [Subject] Like '*' & [Forms]![Info Search]![Narrative] & '*'", acReadOnly, acNormal
DoCmd.Close acForm, "Info Search"
Replace the [Forms]![Info Search]![Narrative] with you form name and fields that you want to display the results in. My code above currently only searches the two fields. If you want to search more than that, just add another Or within the double quotes and the fields you want to search.
Hope this helps. If you need further assistance, please let me know.
Bob