Creating Filters

Hello. I am new to programming. I have created a form (shown below) that I want sent to applicants. I have three drop-down lists: Status, LMI, and Structure Type. I want to design the form so that these lists will automatically filter a set of applicants according to their Status, LMI, and Structure Type. What are the steps I need to take to have my drop-down menus filter applicants by these three types? Thank you.

  Discussion posts and replies are publicly visible

Parents
  • LOTS of questions still to be answered, but let's make a start:

    I presume there is a list of "Applicants" somewhere that you want to use the filters to return a subset of that list based upon what you've selected? If so: where is that list? (database?)

    The Applicants will need to have correlating attributes that can be used to select them based upon the values you pick in your drop-downs.

    When you say you want to "send a form" to the Applicants, what is meant by that? The form you're displaying looks like its the basis for capturing some info by someone who wants to use that to get the list of Applicants to send something to them, but it wouldn't be THIS form (would it?)

  • Hello, Stewart. I created a list of applicants, added them to the test environment, and placed them in a group (shown below). I don't know where to go from there, however; I'm not sure how to "connect" these applicants to the attributes relevant to the drop-downs. 

    Currently, I can click "submit" and have this form sent to a designated email address. The result is shown below the first image. This is the form I want sent. The issue is getting it to automatically filter the test applicants. 

    Thank you.

  • Ok, that's a start. But you need to be able to correlate a value you pick in your drop-down with a value associated with the Applicants so that you can filter them, along the lines of:

    Applicant's Status is <status>

    AND

    Applicant's  LMI is <lmi>

    AND

    Applicant's Structure Type is <structureType>

    ...and you can only do this if you have a means of tagging each Applicant with the relevant values. At this point you have to decide where these values are going to be set and, as important, HOW they will have those values set (and WHO by, and WHEN). So, you need to have a workable design down, preferably BEFORE you embark on building your solution.

    Are you able to answer the above ?

Reply
  • Ok, that's a start. But you need to be able to correlate a value you pick in your drop-down with a value associated with the Applicants so that you can filter them, along the lines of:

    Applicant's Status is <status>

    AND

    Applicant's  LMI is <lmi>

    AND

    Applicant's Structure Type is <structureType>

    ...and you can only do this if you have a means of tagging each Applicant with the relevant values. At this point you have to decide where these values are going to be set and, as important, HOW they will have those values set (and WHO by, and WHEN). So, you need to have a workable design down, preferably BEFORE you embark on building your solution.

    Are you able to answer the above ?

Children