Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Answered

Filter an Entra ID column by Job Title or Department

(1) ShareShare
ReportReport
Posted on by

So I'm building my first app and using dataverse as the main source. I have two columns in the dataverse table to refer to Entra ID, but instead of showing the entire users list, I would like it to only show based on particular job titles or departments. 

 

Items Poperty = Choices([@'Permit Management'].cr442_PermitTechSearch)
 
The column type is Lookup, the table is called Permit Management, and schema name is cr442_PermitTechSearch
 
For one datacard I'm wanting to only see people with the job title of Permit Tech (Permits) and the other Project Manager (Project Managers)
 
Is this possible using Filter? or would I need to make a new reference table with a new column in my table?
 
  • Verified answer
    Ami K Profile Picture
    15,665 Super User 2024 Season 1 on at
    Re: Filter an Entra ID column by Job Title or Department

    @marshallzart - couple of examples below:

     

    Filter(
     Choices([@'Permit Management'].cr442_PermitTechSearch),
     'Job Title' = "Permit Tech (Permits)" || 'Job Title' = "Project Manager (Project Managers)"
    )
    

     

    Filter(
     Choices([@'Permit Management'].cr442_PermitTechSearch),
     'Job Title' in [
     "Permit Tech (Permits)", 
     "Project Manager (Project Managers)"
     ]
    )

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

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,522 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 65,890 Most Valuable Professional

Leaderboard