Hi
I want to add new line sting which are displaying on label in power app.
In below code I am using char(10) but it is not working.
Concatenate("Hello ",lbl_approvervalidationlogic.Text, ", " ,Char(10) , "You have been selected as an approver")
Please note , using this code to assign value in variable and label in canvas app.
Regards,
Lalit Kadam
Thanks
Concatenate("Hello ",lbl_approvervalidationlogic.Text, ", " ,Char(13) , "You have been selected as an approver")
is functional on a label too
I have found that if you target both browser and mobile, it seems that you need both Char(10) & "<br>" together. The browser is ignoring the Char(10) and mobile (at least iOS) ignores the "<br>". I don't have Android or Windows PowerApps application.
Hi @Anonymous ,
I am following up this post to see if it can be closed if you obtained the result you were looking for.
Please click Accept as solution if my post helped you solve your issue as 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 Thumbs Up.
Hi @Anonymous ,
Just checking if you got the result you were looking for on this thread. Happy to help further if not.
Please click Accept as solution 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 Thumbs Up.
Hi @Anonymous :
Do you want to split a string into two lines?
I thought of a convenient method, that is to use the HTML Text control.We can use the <br> tag in the HTML Text control to achieve line breaks.
I've made a test for your reference:
1\Add a Html Text control:
HtmlText:
"Hello "&lbl_approvervalidationlogic.Text & ",<br>" & "You have been selected as an approver"
Best Regards,
Bof
Hi @Anonymous ,
That should work as Text - you can also try Char(13), but I have tested as below
Also if you are using this ultimately in an email body, try <br> instead. If you use Office365Outlook.SendEmailV2, it will automatically pick up and render the HTML line break.
Please click Accept as solution 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 Thumbs Up.
WarrenBelz
146,743
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
66,079
Most Valuable Professional