cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

Custom error messages on edit form not preventing submit

Hi,

I'm having trouble with custom validation checking on an edit form generated from a SharePoint list.  Basically, I have a column Quantity that must be greater than zero.  In the Data Card's error message label, I have:

Coalesce(
    Parent.Error,
    If(
        !IsEmpty(txtQuantity.Text) && !IsBlank(txtQuantity.Text) && Value(txtQuantity.Text)<=0,
        "Quantity must be greater than zero."
    )
)

This correctly displays the error message when viewing the form as I enter negative or positive values in the Quantity field.

 

The issue is even with an error message displayed the user can still submit the form as the EditForm.Valid property is true.  I've looked at videos on YouTube that don't have anything except SubmitForm(EditForm) in the Save button's OnSelect property and they work (form cannot be submitted).  What am I missing?  This form has a few dozen fields on it so no way I add all those checks to the Save button.  How can I make my custom errors set the form's Valid property to false?  Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
RandyHayes
Super User
Super User

@Anonymous 

So then there is the issue.  For a form to be Valid, any Required column (Required set to true) must have a value - the value comes from the Update property of the DataCard.

If your Update property is the value of the text input control, and it is zero, it will have a value of 0...which is a value.

Change your Update property to:

With({val: IfError(Value(txtQuantity.Text), 0)},
    If(val > 0, val, Blank())
)

With the above, only values greater than zero will appear in the Update property.  If it is not greater than zero, then the Update property will be blank...and thus, as a required column, will cause the form to not be valid.

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

View solution in original post

9 REPLIES 9
RandyHayes
Super User
Super User

@Anonymous 

On your OnSelect of the save, set the formula to:

If(yourForm.Valid, SubmitForm(yourForm))

Make sure you have logic in the Required property of the DataCard in your form.  That is what dictates what is valid and what is not.

 

I hope this is helpful for you.

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!
Anonymous
Not applicable

This is exactly the problem I'm having.  EditForm.Valid is TRUE even though I enter a Quantity less than zero and the error message is showing.

RandyHayes
Super User
Super User

@Anonymous 

What is the Required property of your DataCard?  And what is the Update property of the Datacard?

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!
Anonymous
Not applicable

Required is true, Update is Value(txtQuantity.Text).  The field is always required, but it's an error unless they enter a value greater than zero.

RandyHayes
Super User
Super User

@Anonymous 

So then there is the issue.  For a form to be Valid, any Required column (Required set to true) must have a value - the value comes from the Update property of the DataCard.

If your Update property is the value of the text input control, and it is zero, it will have a value of 0...which is a value.

Change your Update property to:

With({val: IfError(Value(txtQuantity.Text), 0)},
    If(val > 0, val, Blank())
)

With the above, only values greater than zero will appear in the Update property.  If it is not greater than zero, then the Update property will be blank...and thus, as a required column, will cause the form to not be valid.

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!
Anonymous
Not applicable

OK, this looks like it will work in this situation.  What if the field is NOT required, but I still want to do the same check (if there's a value, it must be greater than zero)?

Anonymous
Not applicable

The other issue I'm seeing now is the error message doesn't change.  If I enter "0" in the Quantity field it's telling the Quantity is required as opposed to Quantity must be greater than zero.

RandyHayes
Super User
Super User

@Anonymous 

Make the field required then!!

You can alter the Required property on the datacard as you would like.

Normally when you connect the form to the datasource, PowerApps will determine which are required based on what is in your list settings.  But, there is no reason that you cannot alter that property as you need it.

Keeping in mind that in order to have a valid form, ANY datacard that is required MUST have a value on the Update property result.

So, if you want to "invalidate" your form for the purpose of having a message to the user or something to inform them that they have an invalid value, you can work with both the Required and the Update property.

 

For example, perhaps a column that is not required in the datasource, but you want to have a numeric value greater than 0 be entered in a textinput control.

The Required property would be:  IsError(Value(yourTextInput.Text), 0) = 0

This would set the Required to true if the value is 0.

For the Update property:  If(Self.Required, Blank(), IsError(Value(yourTextInput.Text), 0))

This would set the Update to blank if the Required property is true (which remember, we already put the logic in that property to determine validity, so we can just reference it here) and would output the Value otherwise.  (Note: I still use the IsError statement as otherwise PowerApps can give false errors at design time that are just annoying)

 

One other thing I would do for a "standard form" that has the visual "required" asterisk label in it, is to get rid of it or disable it so it does not appear based on the above.

 

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

Is the formula correct? It doesn't work in my app.

Helpful resources

Announcements

Tuesday Tip | Update Your Community Profile Today!

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   We're excited to announce that updating your community profile has never been easier! Keeping your profile up to date is essential for staying connected and engaged with the community.   Check out the following Support Articles with these topics: Accessing Your Community ProfileRetrieving Your Profile URLUpdating Your Community Profile Time ZoneChanging Your Community Profile Picture (Avatar)Setting Your Date Display Preferences Click on your community link for more information: Power Apps, Power Automate, Power Pages, Copilot Studio   Thank you for being an active part of our community. Your contributions make a difference! Best Regards, The Community Management Team

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Tuesday Tip: Community User Groups

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   Today's Tip: Community User Groups and YOU Being part of, starting, or leading a User Group can have many great benefits for our community members who want to learn, share, and connect with others who are interested in the Microsoft Power Platform and the low-code revolution.   When you are part of a User Group, you discover amazing connections, learn incredible things, and build your skills. Some User Groups work in the virtual space, but many meet in physical locations, meaning you have several options when it comes to building community with people who are learning and growing together!   Some of the benefits of our Community User Groups are: Network with like-minded peers and product experts, and get in front of potential employers and clients.Learn from industry experts and influencers and make your own solutions more successful.Access exclusive community space, resources, tools, and support from Microsoft.Collaborate on projects, share best practices, and empower each other. These are just a few of the reasons why our community members love their User Groups. Don't wait. Get involved with (or maybe even start) a User Group today--just follow the tips below to get started.For current or new User Group leaders, all the information you need is here: User Group Leader Get Started GuideOnce you've kicked off your User Group, find the resources you need:  Community User Group ExperienceHave questions about our Community User Groups? Let us know! We are here to help you!

Super User of the Month | Ahmed Salih

We're thrilled to announce that Ahmed Salih is our Super User of the Month for April 2024. Ahmed has been one of our most active Super Users this year--in fact, he kicked off the year in our Community with this great video reminder of why being a Super User has been so important to him!   Ahmed is the Senior Power Platform Architect at Saint Jude's Children's Research Hospital in Memphis. He's been a Super User for two seasons and is also a Microsoft MVP! He's celebrating his 3rd year being active in the Community--and he's received more than 500 kudos while authoring nearly 300 solutions. Ahmed's contributions to the Super User in Training program has been invaluable, with his most recent session with SUIT highlighting an incredible amount of best practices and tips that have helped him achieve his success.   Ahmed's infectious enthusiasm and boundless energy are a key reason why so many Community members appreciate how he brings his personality--and expertise--to every interaction. With all the solutions he provides, his willingness to help the Community learn more about Power Platform, and his sheer joy in life, we are pleased to celebrate Ahmed and all his contributions! You can find him in the Community and on LinkedIn. Congratulations, Ahmed--thank you for being a SUPER user!  

Tuesday Tip: Getting Started with Private Messages & Macros

Welcome to TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   This Week's Tip: Private Messaging & Macros in Power Apps Community   Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member!   Our Knowledge Base article about private messaging and macros is the best place to find out more. Check it out today and discover some key tips and tricks when it comes to messages and macros:   Private Messaging: Learn how to enable private messages in your community profile and ensure you’re connected with other community membersMacros Explained: Discover the convenience of macros—prewritten text snippets that save time when posting in forums or sending private messagesCreating Macros: Follow simple steps to create your own macros for efficient communication within the Power Apps CommunityUsage Guide: Understand how to apply macros in posts and private messages, enhancing your interaction with the Community For detailed instructions and more information, visit the full page in your community today:Power Apps: Enabling Private Messaging & How to Use Macros (Power Apps)Power Automate: Enabling Private Messaging & How to Use Macros (Power Automate)  Copilot Studio: Enabling Private Messaging &How to Use Macros (Copilot Studio) Power Pages: Enabling Private Messaging & How to Use Macros (Power Pages)

April 4th Copilot Studio Coffee Chat | Recording Now Available

Did you miss the Copilot Studio Coffee Chat on April 4th? This exciting and informative session with Dewain Robinson and Gary Pretty is now available to watch in our Community Galleries!   This AMA discussed how Copilot Studio is using the conversational AI-powered technology to aid and assist in the building of chatbots. Dewain is a Principal Program Manager with Copilot Studio. Gary is a Principal Program Manager with Copilot Studio and Conversational AI. Both of them had great insights to share with the community and answered some very interesting questions!     As part of our ongoing Coffee Chat AMA series, this engaging session gives the Community the unique opportunity to learn more about the latest Power Platform Copilot plans, where we’ll focus, and gain insight into upcoming features. We’re looking forward to hearing from the community at the next AMA, so hang on to your questions!   Watch the recording in the Gallery today: April 4th Copilot Studio Coffee Chat AMA

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