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 / How to set "Text" prop...
Power Apps
Answered

How to set "Text" property of Label to actual Error message (instead of default Label.Text=Parent.Error) in CustomDataCard under custom DataCardValue

(0) ShareShare
ReportReport
Posted on by 195

I added a custom DataCardValue (say combobox) inside CustomDataCard and copied the original ErrorMessage under my DataCardValue
Snap 2021-03-31 at 01.54.09.png

 

I tried to set Text property with following but didn't work 

 

 

Errors('Issues Tracking',ThisItem.Priority)

 

 

 

Also I have 2 DataCardValue elements in my custom DataCard as shown in snap

 

How to show particular error message in label (only default error message after form is submitted). I only need to show the error message after form is submitted.... @Reza @RandyHayes @WarrenBelz @Drrickryp @Pstork1 @rubin_boer 

Categories:
I have the same question (0)
  • v-xiaochen-msft Profile Picture
    Microsoft Employee on at

    Hi @akg1421 ,

     

    Please use this formula in the label control:

    If(!IsBlank(Parent.Error),"your particular error message")

    v-xiaochen-msft_0-1617157955707.png

    If you use the patch() function you could use the errors() function.

    So, if you use submitform() to submit data, please use my above formula.

     

    Best Regards,
    Wearsky
    If my post helps, then please consider Accept it as the solution to help others. Thanks.

     

     

  • amk1421 Profile Picture
    195 on at

    @v-xiaochen-msft I do not want to use custom error msg, only want to use "Parent.Error"

     

    Why would I use: If(!IsBlank(Parent.Error),"your particular error message")

     

    There is no point in checking if "Parent" is blank because parent, in my case, is a Custom Data Card containing two Data Card Values i.e. Priority & Save as Draft. I merely copied the error message Labels from original Data cards to my custom data card (which houses these 2 controls). Now my question is, How do I enable these custom labels to enact as the the original error message labels? Original label has property set as "Text = Parent.Error"

  • Pstork1 Profile Picture
    69,042 Most Valuable Professional on at

    The parameters for the errors() function are the data source and the record producing the error.  That returns a table of information.  So I think what you want is something like this

    if((Errors('Issues Tracking',ThisItem)).Column = "Priority",(Errors('Issues Tracking',ThisItem)).Message)
  • amk1421 Profile Picture
    195 on at

    @Pstork1 It gives error: "Expected text value"
    Tried using 

    If((Errors('Issues Tracking',ThisItem)).Column='Priority',Text((Errors('Issues Tracking',ThisItem)).Message))

    Now the error is "...function text has some invalid arguments"

    Also tried: 

    If((Errors('Issues Tracking',ThisItem)).Column=ThisItem.Priority,(Errors('Issues Tracking',ThisItem)).Message)

    "Expected text value"

  • Verified answer
    Pstork1 Profile Picture
    69,042 Most Valuable Professional on at

    Since it returns a table you may have to use First() to get the first record.

    if(First(Errors('Issues Tracking',ThisItem)).Column = "Priority",first(Errors('Issues Tracking',ThisItem)).Message)
  • amk1421 Profile Picture
    195 on at

    @Pstork1 Hoping it works!

  • amk1421 Profile Picture
    195 on at

    @Pstork1 What if I need to show all messages newline separated?

  • Pstork1 Profile Picture
    69,042 Most Valuable Professional on at

    For that it would be better to use a data table rather than a label.  Then you can just set the items of the data table to the error()

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 545 Most Valuable Professional

#2
Haque Profile Picture

Haque 314

#3
Kalathiya Profile Picture

Kalathiya 234 Super User 2026 Season 1

Last 30 days Overall leaderboard