Skip to main content

Notifications

Community site session details
Power Apps - Building Power Apps
Answered

How do you make a field required in the form?

Like (3) ShareShare
ReportReport
Posted on 11 Dec 2018 23:00:14 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
    16 on 25 Mar 2024 at 02:40:28
    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
    11 on 23 Sep 2022 at 16:55:46
    Re: How do you make a field required in the form?

    Hello! Same problem here.

     

    Thank you

    N.

  • kharina Profile Picture
    249 on 21 Feb 2020 at 03:32:37
    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
    7,314 Most Valuable Professional on 21 Feb 2020 at 03:28:51
    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
    249 on 21 Feb 2020 at 02:57:50
    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
    on 12 Dec 2018 at 20:31:55
    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
    on 12 Dec 2018 at 07:04:33
    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

Understanding Microsoft Agents - Introductory Session

Confused about how agents work across the Microsoft ecosystem? Register today!

Warren Belz – Community Spotlight

We are honored to recognize Warren Belz as our May 2025 Community…

Congratulations to the April Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,786 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 66,093 Most Valuable Professional

Leaderboard