Announcements
In Power Apps, the built-in Confirm function (which shows a simple confirmation dialog) does not support line breaks or multi-line messages. The message parameter is rendered as plain text without interpreting newline characters like Char(10) or Char(13).
Confirm
Char(10)
Char(13)
If you need to show a multi-line confirmation or message with line breaks, the recommended approach is to create a custom confirmation dialog using a combination of controls (e.g., a Label or Text control inside a Popup or a visible container) where you can format the text freely, including line breaks.
Set(var_ConfirmText, "Are you sure you want to archive this task? "); Set(var_ItemTitle, "Example Title"); If( Confirm( var_ConfirmText & var_ItemTitle, { Title: "Confirm Archive" } ), //Archive the record here Notify("Record archived.", NotificationType.Success) )
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.
Jump in, show your community spirit, and win prizes!
Expanding mentorship, skilling, and AI innovation
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Valantis 424
WarrenBelz 355 Most Valuable Professional
11manish 290