web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Display mode for “Team...
Power Apps
Unanswered

Display mode for “Team” and “Assign to” in the Request form

(0) ShareShare
ReportReport
Posted on by 34
Display mode for “Team” and “Assign to” in the Request form
Implement the display logic for two dependent dropdown fields in the request form:
Team: Displays all teams sorted alphabetically (A→Z).
Assign to: Displays team members filtered by the selected Team, also sorted alphabetically.
Both fields should use dropdown lists (comboboxes) for dynamic data binding and user-friendly selection.
Field Type Selection
- Team: Dropdown list populated from the SharePoint Teams list.
- Assign to: Dropdown list populated from the SharePoint TeamMembers list, filtered by the selected Team.
Display Mode Requirements
Team Dropdown:
- Items: All active teams, sorted alphabetically.
- Search enabled for quick selection.
Assign to Dropdown:
- Items: Members of the selected Team, sorted alphabetically.
- Disabled until a Team is selected.
- Resets when Team changes.
Layout Requirement : The fields Team and Assign to must appear on the same horizontal line within the Governance section for better usability and reduced scrolling.
1.png
Categories:
I have the same question (0)
  • Kalathiya Profile Picture
    1,485 Super User 2026 Season 1 on at
    Hello @Raghulck
     
    Team and Assign to fields should be implemented as dependent dropdown (combobox) controls with the following display logic.
     
    Team - Combobox - Item Property
    SortByColumns(
        Filter(Teams, IsActive = true),
        "Title",
        Ascending
    ) //replace "Teams" with your actual list name as well as "IsActive" with your actual column name
    
    Team - Combox - OnChange Property
     
    Reset(cmbAssignTo); //replace "cmbAssignTo" with actual your dropdown control name
     
    Assign To - Combobox - Item Property
    SortByColumns(
        Filter(
            TeamMembers,
            TeamId = cmbTeam.Selected.ID
        ),
        "MemberName",
        Ascending
    ) //Replace SharePoint list, column and control with your actual name (As per yours)
    
     
    Assign To - Combobox - Display Mode Property
    If(
        IsBlank(cmbTeam.Selected),
        DisplayMode.Disabled,
        DisplayMode.Edit
    )
    

    Note: Replace the list names, column names, and control names below as per your setup.

    📩 Need more help? Mention@Kalathiya anytime!
    ✔️ Don’t forget to Accept as Solution if this guidance worked for you.
    💛 Your Like motivates me to keep helping.
     
  • Akshansh-Sharma Profile Picture
    298 Moderator on at
    Nice explanation Kalathiya, please can you mark this as suggested answer I also think your approach should work for a cascading dropdown so it would be helpful for Raghu or anyone else to directly try this approach
     
    --------------------------------------------------------------------------------------------------------------------
    Please click Accept as solution if my post helped you solve your issue. If the content was useful in other ways, please consider clicking Yes to the question Was this reply helpful?
     
    LinkedIn- https://www.linkedin.com/in/akshansharma/
    Github Repo - https://www.youtube.com/@akshanshsharma3114
    --------------------------------------------------------------------------------------------------------------------
  • Kalathiya Profile Picture
    1,485 Super User 2026 Season 1 on at
     
    I wanted to follow up and see if this resolved the issue for you. I’m happy to help further if needed.

    📩 Need more help? Mention @Kalathiya anytime!
    ✔️ Don’t forget to Accept as Solution if this guidance worked for you.
    💛 Your Like motivates me to keep helping.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 542 Most Valuable Professional

#2
Haque Profile Picture

Haque 206

#3
Kalathiya Profile Picture

Kalathiya 201 Super User 2026 Season 1

Last 30 days Overall leaderboard