I have a Recipe database. I want to ask two queries at the same time. Ex: Where “Recipe Name” LIKE ‘%’ || :Enter_Word_Using_Caps_For_First_Letter || ‘%’. This works fine. Now I also want to add AND after this.
Problem is the next query involves finding the True statement from 10 different checkboxes. Above I know it comes from the Recipe Name this one is unknown until the name of the checkbox is entered. I tried And Like together but this did not work.
Frank