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 / Enable SUBMIT if multi...
Power Apps
Answered

Enable SUBMIT if multiple people picker fields have value

(0) ShareShare
ReportReport
Posted on by 31

Hi,

In my form, I need 2 boxes checked and 4 people picker (combo box) fields filled for the "Submit" button to be enabled.

The function works if there is one or two people pickers fields indicated:

 

 

 

If(Checkbox2.Value &&
Checkbox1.Value &&
!IsEmpty(DataCardValue28.SelectedItems) && 
!IsEmpty(DataCardValue30.SelectedItems), 
Edit, Disabled)

 

 

As soon as I add another people picker fields, the function stops working (it doesn't throw any errors, it just doesn't work as expected, i.e. it only requires boxes to be checked and it ignores the people picker fields):

 

 

If(Checkbox2.Value &&
Checkbox1.Value &&
!IsEmpty(DataCardValue28.SelectedItems) && 
!IsEmpty(DataCardValue30.SelectedItems) && 
!IsEmpty(DataCardValue34.SelectedItems) && 
!IsEmpty(DataCardValue39.SelectedItems), 
Edit, Disabled)

 

 

 

Please help. 😞

Categories:
I have the same question (0)
  • zmansuri Profile Picture
    6,048 Super User 2024 Season 1 on at

    Use IsBlank instead of IsEmpty. or better use both to check. 

  • Verified answer
    NandiniBhagya20 Profile Picture
    4,667 Super User 2024 Season 1 on at

    Hi @m1ch6l ,

    Please try using below updated formula - 

    If(Checkbox2.Value &&
    Checkbox1.Value &&
    !(IsEmpty(DataCardValue28.SelectedItems) || IsBlank(DataCardValue28.Selected.Claims) && 
    !(IsEmpty(DataCardValue30.SelectedItems) || IsBlank(DataCardValue30.Selected.Claims) && 
    !(IsEmpty(DataCardValue34.SelectedItems) || IsBlank(DataCardValue34.Selected.Claims) && 
    !(IsEmpty(DataCardValue39.SelectedItems) || IsBlank(DataCardValue39.Selected.Claims), 
    Edit, Disabled)

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 329 Most Valuable Professional

#2
11manish Profile Picture

11manish 209 Super User 2026 Season 2

#3
Mohsin Ali Profile Picture

Mohsin Ali 179

Last 30 days Overall leaderboard