cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Powerapps_Dan
Helper I
Helper I

Shoutouts Canvas App - Search Person Screen Filters

Hi all,

 

Currently using the Shoutouts canvas app and looking to filter out disabled users and users with certain text in their display name (admin users) from the search person screen.

 

I've tried adding Not(EndsWith(DisplayName,"TEXT")) and AccountEnabled to the existing code, but it's not working. I'm new to Power Apps, so I'm sure I'm just not adding it in the correct place.

 

Existing code: 

 

If(IsBlank(Trim(SearchInputBox_4.Text)), MyRelevantPeople, Office365Users.SearchUser({searchTerm: SearchInputBox_4.Text, top: 20}))

 

 2021-06-18 14_32_56-Window.png

 

Thanks in advance!

1 ACCEPTED SOLUTION

Accepted Solutions
v-xiaochen-msft
Community Support
Community Support

Hi @Powerapps_Dan ,

 

Please try this formula:

If(IsBlank(Trim(SearchInputBox_4.Text)),MyRelevantPeople,Filter(Office365Users.SearchUser({searchTerm:SearchInputBox_4.Text,top:20}),AccountEnabled= true ,Not(EndsWith(DisplayName,"TEXT"))))

 

Best Regards,
Wearsky
If my post helps, then please consider Accept it as the solution to help others. Thanks.

View solution in original post

6 REPLIES 6
v-xiaochen-msft
Community Support
Community Support

Hi @Powerapps_Dan ,

 

Please try this formula:

If(IsBlank(Trim(SearchInputBox_4.Text)),MyRelevantPeople,Filter(Office365Users.SearchUser({searchTerm:SearchInputBox_4.Text,top:20}),AccountEnabled= false ||Not(EndsWith(DisplayName,"TEXT"))))

 

Best Regards,
Wearsky
If my post helps, then please consider Accept it as the solution to help others. Thanks.

Hi @v-xiaochen-msft ,

 

Thank you! The filter on the ends with display name is working, however disabled accounts are still appearing  unfortunately 

v-xiaochen-msft
Community Support
Community Support

Hi @Powerapps_Dan ,

 

Please change false to true in the image.

vxiaochenmsft_0-1623999791842.png

 

Best Regards,
Wearsky
If my post helps, then please consider Accept it as the solution to help others. Thanks.

 

hi @v-xiaochen-msft ,

 

Unfortunately changing from false to true isn't working either, this also stops the displayname filter from working too

v-xiaochen-msft
Community Support
Community Support

Hi @Powerapps_Dan ,

 

Please try this formula:

If(IsBlank(Trim(SearchInputBox_4.Text)),MyRelevantPeople,Filter(Office365Users.SearchUser({searchTerm:SearchInputBox_4.Text,top:20}),AccountEnabled= true ,Not(EndsWith(DisplayName,"TEXT"))))

 

Best Regards,
Wearsky
If my post helps, then please consider Accept it as the solution to help others. Thanks.

Powerapps_Dan
Helper I
Helper I

Hi @v-xiaochen-msft ,

 

That works perfect! Thank You!

Helpful resources

Announcements
Power Apps News & Annoucements carousel

Power Apps News & Announcements

Keep up to date with current events and community announcements in the Power Apps community.

Community Call Conversations

Introducing the Community Calls Conversations

A great place where you can stay up to date with community calls and interact with the speakers.

Power Apps Community Blog Carousel

Power Apps Community Blog

Check out the latest Community Blog from the community!

Top Solution Authors
Top Kudoed Authors
Users online (3,739)