Skip to main content
Community site session details

Community site session details

Session Id :
Power Apps - Power Apps Pro Dev & ISV
Answered

append comments

(0) ShareShare
ReportReport
Posted on by 8
Hi, I followed the instructions in the youtube video by Reza Dorrani on How to append changes to existing text (append comments) in Power Apps. I followed it the best I could but because of the difference in versions mine is not working as it should. Reza suggested asking this forum. Is anyone aware of newer instructions for this process? Please see attached copies of the form and copies with the error messages for height and Visible
 
Thank you,
Gloria

 

  • GF-12111424-0 Profile Picture
    8 on at
    append comments
    Thank you for your response. This solved the issue and I have no more errors.
  • Verified answer
    WarrenBelz Profile Picture
    148,755 Most Valuable Professional on at
    append comments
    You simply need Mode, not DisplayMode - for the first one (you do not need If/true/false )
    MethodsForm.Mode <> FormMode.View
    and the second
    If(
       MethodsForm.Mode = FormMode.View,
       0,
       100
    )
     
  • GF-12111424-0 Profile Picture
    8 on at
    append comments
    Hi, I do not know how to answer your question as far as what I am wanting to compare. I copied this code from someone else but the end result that we are wanting is to be able to add appended comments that include the name of the individual and the date and time the comment was made.
    We want to have these comments for historical record keeping. Does this help? Also, please see attached a screenshot from the Comment field we were using in Microsoft Planner. This is an example of what we want to do in Power Apps.
     
    Thank you,
    Gloria
  • Suggested answer
    jrletner Profile Picture
    720 Super User 2025 Season 1 on at
    append comments
    Hi Gloria, the issue you are experiencing is due to a type comparison mismatch.
     
    DisplayMode.View results in a text "view" and FormMode.View results in a numeric value of 2.
     
    Notice Form2.DisplayMode.View = view, data type text
     
    Notice FormMode.View = 2, data type number
     
    So you need to determine the correct logical comparison for what you're trying to attempt.
     
    If you're able to describe more of what you're wanting to compare and how to handle that, we can probably clear this up for you pretty quickly.

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

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 791 Most Valuable Professional

#2
MS.Ragavendar Profile Picture

MS.Ragavendar 410

#3
mmbr1606 Profile Picture

mmbr1606 275 Super User 2025 Season 1