--- title: "Creating a Flow Output Dropdown List" slug: "creating-flow-output-dropdown-drop-list" description: "Learn how to populate a Drop Down List on a Decisions Form with options from Flow Output and configure the required data mapping." tags: ["Data Movement", "Displaying Lists"] updated: 2026-06-08T19:12:43Z published: 2026-06-08T19:12:43Z canonical: "documentation.decisions.com/creating-flow-output-dropdown-drop-list" --- > ## Documentation Index > Fetch the complete documentation index at: https://documentation.decisions.com/llms.txt > Use this file to discover all available pages before exploring further. # Creating a Flow Output Dropdown List ## Overview **Dropdown Lists** may source its list items from Flow outputs allowing for dynamic population based on Flow logic. --- ## Example The following example displays a drop-down list where users may select from an account from a list of all accounts in the system. The user's selection will be confirmed via a popup. 1. In the Designer Project, [create a Flow](https://documentation.decisions.com/version-10/docs/creating-your-first-flow-2). Name it 'Get All Accounts Flow'. It will automatically open in the Flow Designer. 2. Add a **GetAll** step located via **Toolbox >** **Integrations > All Integrations > Internal Services > Account Service** to the workspace. Connect it to the Start and End steps. 3. Select the **End** step**.** In the **Properties** panel  under **Data > Pick From Current Data**, select **GetAll_Output**. 4. Save and close the Flow Designer. This Flow will gather the list of accounts to display in the dropdown list.![](https://cdn.document360.io/6ef8bcc1-6489-4486-9ad1-83acff7e5df0/Images/Documentation/image-1780425830750.png) 5. Back in the Designer Folder, create a Flow. This Flow will house the Form with the dropdown list. 6. Add a **Show Form** step and create a new Form. 7. In the Form Designer, drag and drop a **Button** and the **Drop Down List** onto the Form. 8. Open the Dropdown list's Properties > Input Data section. For Type, select Account.  Specify Display Field as 'EmailAddress'. Change the **List Input Source** to **Flow**. Specify Flow Output DataName as the GetAll's output name. By default, this is 'GetAll_Output', Select PICK FLOW ID and select the previously made 'Get All Accounts Flow'. 9. In the Output Data section, select Output only. Rename Selected Item(s) Data Name to "Selected Email".![](https://cdn.document360.io/6ef8bcc1-6489-4486-9ad1-83acff7e5df0/Images/Documentation/image-1780425976086.png) 10. Save and close the Form Designer to return to the Flow Designer. 11. Add a **Show Popup** step after the Form. Connect it to the Form and then the End step. 12. Navigate to the Show Popup step Properties. Set the **Subject** input to the **Constant** mapping type and type 'Selected Email', and set **Message** to the **Select From Flow** mapping type and select SelectedEmail.EmailAddress.![](https://cdn.document360.io/6ef8bcc1-6489-4486-9ad1-83acff7e5df0/Images/Documentation/image-1780426100714.png) --- ## Debug 1. In the parent Flow Designer, select **Debug l**located in the top toolbar. 2. Select **Start Debugging.** 3. The **Form** that holds the Drop Down List is displayed. Select an account email and click the **Button** to apply the changes. 4. The Popup will display in the upper right corner showing which account was chosen.