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 / Hiding multiple choice...
Power Apps
Answered

Hiding multiple choices from SharePoint form

(0) ShareShare
ReportReport
Posted on by 19

Hello,

I have a drop down box that lists choices from a SharePoint column. For example, these are 'Not Started', 'Started', 'In Progress', 'Finished' and 'Sent'.

 

I want to hide 'Finished' and 'Sent' from the PowerApps form, because they are set by another application and I don't want users selecting them from the SharePoint form.

 

I've done a bit of a search but cannot find a solution that hides multiple items. Can anyone give me a hand?

Many thanks

Categories:
I have the same question (0)
  • Verified answer
    WarrenBelz Profile Picture
    156,458 Most Valuable Professional on at

    Hi @bf ,

    Try something like

    Filter(
     Choices([@YourListName].YourFieldName),
     Value <> "Finished" &&
     Value <> "Sent"
    )

     

    Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

     

  • KrishnaV Profile Picture
    5,023 on at

    Hi @bf ,

     

    Change your dropdown formula like this:

    If the column is single line of text:

    Filter(Distinct(Sort(SplistName,Title,Ascending),Title),Title<>"Finished" And Title<>"Sent")

     If the column is choice field:

    Filter(Choices(SampleList.Status),Value<>"Finished" And Value<>"Sent")

     
    I hope this resolved your issue if you see any challenge/need further help please let me know I am always happy to do it for my community.

    Regards,
    Krishna
    If this post helps you give a 👍 and if it solved your issue consider Accept it as the solution to help the other members find it more.

  • v-xida-msft Profile Picture
    Microsoft Employee on at

    Hi @bf ,

    Which type column do you use to store these Choice options? Choice type column?

    Do you want to hide the 'Finished' and 'Sent' from the Choice field ComboBox List in your SharePoint custom form?

     

    Based on the needs that you mentioned, I agree with @WarrenBelz 's thought almost. Please try the following workaround:

    Go to your Sharepoint custom form, unlock the Choice field data card, set the Items property of the ComboBox to following:

    Filter(
     Choices('YourSPList'.ChoiceField),
     Value <> "Finished" && Value <> "Sent"
    )

    or

    Filter(
     Choices('YourSPList'.ChoiceField),
     Not(Value in ["Finished", "Sent"])
    )

    Please consider take a try with above solution, then check if the issue is solved.

     

    Best regards,

  • WarrenBelz Profile Picture
    156,458 Most Valuable Professional on at

    @v-xida-msft thank you for confirming the posts of mine and @KrishnaV - pretty much what we both said.

    @bf , please tag whoever you want to continue this thread with.

  • WarrenBelz Profile Picture
    156,458 Most Valuable Professional on at

    Hi @bf ,

    Just checking if you got the result you were looking for on this thread. Happy to help further if not.

    Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

  • v-xida-msft Profile Picture
    Microsoft Employee on at

    Hi @bf ,

    Have you taken a try with the solutions we provided above?

     

    Please take a try with above solutions, then check if the issue is solved. If you have solved your problem, please consider go ahead to click "Accept as Solution" to identify this thread has been solved.

     

    Best regards, 

  • bf Profile Picture
    19 on at

    Thanks @WarrenBelz , your solution worked.

     

    Sorry for the delay, I only get to play with this every so often.

     

    Is there a quick and easy way to change what's displayed depending on the logged in user? Or should I start another thread for that?

     

    B

  • WarrenBelz Profile Picture
    156,458 Most Valuable Professional on at

    Hi @bf ,

    The built-in functions User().FullName and User().Email can do this. As neither are delegable, you can set (whichever one you want to use) as a Variable at App OnStart

    Set(
     vUserMail,
     User().Email
    )

    and then filter against the Variable.

     

    Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

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

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 356 Most Valuable Professional

#2
11manish Profile Picture

11manish 225 Super User 2026 Season 2

#3
Mohsin Ali Profile Picture

Mohsin Ali 211

Last 30 days Overall leaderboard