Skip to main content

Notifications

Power Apps - Building Power Apps
Answered

How do you make a field required in the form?

(3) ShareShare
ReportReport
Posted on by

I have a field that needs to be "required ". If the user submits a form without having any input in that field, the form shouldnt submit. 

 

I made the card "required" value to "TRUE" but it doesnt work.

 

Can someone help me with this?

 

Thanks!!

  • Timo08 Profile Picture
    Timo08 16 on at
    Re: How do you make a field required in the form?

    Hi!

    I tried this but it is not working. I think because the datacardvalue is a choice column from Sharepoint List. In addition, I need the button to navigate me to the home screen once the form is submitted. 

    How do we add these functions to our Submit button?

  • nataliasantiago Profile Picture
    nataliasantiago 11 on at
    Re: How do you make a field required in the form?

    Hello! Same problem here.

     

    Thank you

    N.

  • kharina Profile Picture
    kharina 249 on at
    Re: How do you make a field required in the form?

    Hello, 

     

    I'm not sure if you are referring to my question - because there's another person ahead of me.  Sorry.

    But if it's for me, Thank You. I am using a SubmitForm. 

     

    Kind Regards,

    KH

  • PowerAddict Profile Picture
    PowerAddict 7,314 on at
    Re: How do you make a field required in the form?
    Are you using SubmitForm or Patch to submit your form?

    Thanks,
    Hardit Bhatia
    https://thepoweraddict.com
  • kharina Profile Picture
    kharina 249 on at
    Re: How do you make a field required in the form?

    Is there any change in Powerapps about this "required" option? 

    I tried your steps - but it only puts the asterisk on the field where I set "yes" to "required"  - but the form still submits and I can still see the record in SP list.

     

     

    Thank You and Kind Regards,

    Kh

  • asdeev Profile Picture
    asdeev on at
    Re: How do you make a field required in the form?

    Thanks a ton! Kris. It works for me and I am using patch function.

  • Verified answer
    v-xida-msft Profile Picture
    v-xida-msft on at
    Re: How do you make a field required in the form?

    Hi @asdeev,

    How do you submit your form data? Using SubmitForm function or Patch function?

    If you use the SubmitForm function to submit your form data, please consider take a try with the following workaround:9.JPG

    Set the Required property of the Data card property (related to the field you want to mark as Required) to following:

    true /* <-- A boolean value */

    then the Data card would be marked as Required with * sympol. When you submit your form without having value in that field, the error message would show up:10.JPG

     

    If you use a Patch function to submit your form data, I think the If function could achieve your needs. You could consider check if the corresponding field within your Edit form is populated with values using If function. If not, don't patch your form data into your data source.

    I have made a test on my side, please take a try with the following workaround:11.JPG

    Set the OnSelect property of the "Submit" button to following:

     

    If(
     IsBlank(DataCardValue9.Text),
     Notify("The Required field could not be blank, please provide a value for it", NotificationType.Error),
     Patch('20181122_case14', Defaults('20181122_case14'),EditForm1.Updates)
    )

    On your side, you should type:

     

    If(
    IsBlank(DataCardValue9.Text), /* <-- DataCardValue9 represents the Text Input box within the corresponding field Data card */
    Notify("The Required field could not be blank, please provide a value for it", NotificationType.Error),
    If(
    EditForm1.Mode=FormMode.New,
    Patch('YourSPList', Defaults('YourSPList'),EditForm1.Updates),
    Patch('YourSPList', BrowseGallery1.Selected,EditForm1.Updates)
    )
    )

    In addition, when using SubmitForm function to submit your form data, you could also consider use If function to check if the corresponding field within your Edit form is populated with values, if not, don't submit your form data:

    If(
     IsBlank(DataCardValue9.Text), /* <-- DataCardValue9 represents the Text Input box within the corresponding field Data card */ 
     Notify("The Required field could not be blank, please provide a value for it", NotificationType.Error),
     SubmitForm(EditForm1)
    )

    Best regards,

    Kris

     

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

Microsoft Kickstarter Events…

Register for Microsoft Kickstarter Events…

Announcing Our 2025 Season 1 Super Users!

A new season of Super Users has arrived, and we are so grateful for the daily…

Announcing Forum Attachment Improvements!

We're excited to announce that attachments for replies in forums and improved…

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 145,526

#2
RandyHayes Profile Picture

RandyHayes 76,287

#3
Pstork1 Profile Picture

Pstork1 64,907

Leaderboard