Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Unanswered

Using Field Values in Notify

(2) ShareShare
ReportReport
Posted on by 78
Hi y'all,
 
I am trying to use notifications to alert the user to the number that has just been generated in an Autonumber field. I cannot use LastSubmit so I have tried to use the following:
 
SubmitForm(RegisterITADForm); Notify("ITAD NO" & DataCardValue26.Value); ResetForm(RegisterITADForm)
 
All i get returned is the text ITAD NO.
 
Any ideas?
 
Thanks
 
Simon
Categories:
  • WarrenBelz Profile Picture
    146,552 Most Valuable Professional on at
    Using Field Values in Notify
    You did not state your data source type, but assuming SharePoint
    SubmitForm(RegisterITADForm); 
    With(
       {
          _ITAD:
          LookUp(
             SPList,
             ID = RegisterITADForm.LastSubmit.ID
          ).'ITAD No'
       },
       Notify("ITAD NO" & _ITAD)
    ); 
    ResetForm(RegisterITADForm)
     
    Please click Does this answer your question if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it a Like.
    MVP (Business Applications)     Visit my blog Practical Power Apps    Buy me a coffee
  • Suggested answer
    Nandit Profile Picture
    1,563 Super User 2025 Season 1 on at
    Using Field Values in Notify
     
    Instead of  DataCardValue26.Value you need DataCardValue26.Selected.Value Use the below code -
    SubmitForm(RegisterITADForm); Notify("ITAD NO " & DataCardValue26.Selected.Value); ResetForm(RegisterITADForm)
    I have added a space in your static text so that it doesn't stick. 
     
    Hope this helps. 
     
    If this answers your query, please mark this response as the answer.
    If its helpful, please leave a like. Thanks!

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

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,552 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 65,928 Most Valuable Professional

Leaderboard