In Base, I created a music database. I’m making a form for viewing the musical talent (:TalentName) based on a rating (:Rating_1_10) with user parameters. How can I fill in the user parameters in a form text box, instead of in the Parameter Input window? I should also mention that I have so many artists in the collection, that a list box is impractical. Instead, I’m using wildcards in the user parameter for the :TalentName.
(LOWER (“talent-tbl”.“talent-name”) LIKE ‘%’ || LOWER (:TalentName) || ‘%’)
Thanks!
Thanks! I will check it out.