Monday, April 3, 2023

Add additional option to combobox in powerapps

Suppose you have a collection col_AllEmployeeResults & you are showing Title & Email fields in combobox. You want an additional Select option to show in the combobox. Put below in the Items property:


Ungroup(

    Table(

        {items: Table({Title: "Select", Email: "Select"})},

        {items: ShowColumns(Filter(col_AllEmployeeResults, IsActive <> false), "Title", "Email")}

    ),

    "items"

)

No comments:

Post a Comment

Add Service Principle support in Custom Connector

  then search for "Streamlining Integration: Using Service Principal authentication on Custom connectors with Microsoft Graph Applicati...