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 / Notification pop with ...
Power Apps
Answered

Notification pop with unique message for each blank field

(1) ShareShare
ReportReport
Posted on by 46
Hello all,
 
I want to create a notification validation popup that shows different messages for each blank field 
 
I will be showing this popup for 7 isblank conditions and for each isblank conditions I want unique message in the popup.
 
How can I achieve this ?
 
Please help 
Categories:
I have the same question (0)
  • Michael E. Gernaey Profile Picture
    53,963 Moderator on at
    HI
     
    It would help a ton if you can explain better.
     
    Like, at what point do these popups happen? Are you really looking to show 7 Popups, back to back to back.
     
    Its easy to create a fake Modal Form (component) if you are talking about Canvas App, but if you are not talking about Canvas Apps, then you are talking about XRM SDK messages etc etc
     
    So please provide more details and it would really help if you can create a mock up of what you want.
     
  • jrletner Profile Picture
    720 Moderator on at
    I'm not sure of your exact requirements, but here is a sample of what I've done.
     
    There's multiple ways to handle this, this is just one of them.
     
    Steps:

    I inserted a modern text input control and a modern button.
     
     
    Change the TriggerOutput property of the text input control to "Keypress":
     
     
    In the OnChange property of the text input control, enter:
     
    If(
       !IsBlank(Self.Value),
       UpdateContext({_varTitleValidation: "None"}),
       UpdateContext({_varTitleValidation: "Error"})
    )
     
    In the ValidationState property of the text input control, enter:
    _varTitleValidation
     
     
    In the OnSelect property of the button control, enter:
    If(
       IsBlank(TextInputCanvas3.Value),
       UpdateContext({_varTitleValidation: "Error"});
       Notify(
          "You must enter a Title",
          NotificationType.Warning,
          1500
       ),
       Notify("Yay!, everything is great",NotificationType.Success,1500);
       UpdateContext({_varTitleValidation: "None"})
    )
     
    Result:
     
     
     
  • Tejasvi Profile Picture
    46 on at
    Hi all
    Thanks for the response 
    I am using classic controls
    I am trying to create a single popup 
    That would have a label showing different messages
     
    For example if the radio button of item type is empty notification popup appears and has a label that should show "please specify item type to proceed"
    If text input item number is empty
    Same popup would appear but label says "please provide item number to proceed".
  • Tejasvi Profile Picture
    46 on at
    HI all,
     
    does anyone have idea on the below requirement ? Please let me know.
    Need to implement it today.
  • Verified answer
    jrletner Profile Picture
    720 Moderator on at
    If that's all you need to do, you could add something to the OnChange property of your inputs.

    Step 1: In your input component
     
    OnChange:   If(!isBlank(Self.Text), Set(varInputValue, true), Set(vaarInputValue, false))
     
    Step 2:
     
    On your popup, have your labels be Visible IF the varInputValue is true....have them hidden if they are false.

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 Launch!

Jump in, show your community spirit, and win prizes!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the April Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Vish WR Profile Picture

Vish WR 414

#2
Valantis Profile Picture

Valantis 387

#3
timl Profile Picture

timl 344 Super User 2026 Season 1

Last 30 days Overall leaderboard