I tried creating a listbox in a datasheet style form right clicking on column and replace with listbox, right click again and chose column and in data tab clicked properties list box and tried several different sql statements ( I am definately an amateur at sql

Select Day, Name, PPS Number, Phone No. Condition, GP, start date, review date,
from WKLY
where day = "mon"
or day = "tues"
or day = "wed"
or day + "thurs"
or day = "fri"
also tried the where and distinct statements, also tried in, and operators
Also created a macro : from search control to a form from tutorial in NeoWiki,
Sub SearchByDay
dim ofilter as object
dim oformWKLY as object
oformWKLY = ThisComponent.Drawpage.Forms.getByName ("Standard")
oFilter = oFormWKLY.getByName ("DaySearchListBox")[/color]if
oFilter.CurrentValue <> "" then
oFormWKLY.Filter = "Day LIKE " + "'"+oFilter.CurrnetValue+"'"
oFormWKLY.ApplyFilter = True
else
oFormWKLY.ApplyFilter = False
end if
oFormWKLY.Reload
End Sub
I think the line in red is wrong for my form??
Probably something very simple but as clear as mud now to me. Would it be be better to create 3tables 1. with days of the week 2. list of patient details and 3. for GPs names?

I have managed to get the listbox to show the arrow and side or to click down but with no data in it.
Hoping someone out there can give me a clue to what I am doing!!
