Hi @Ram3 ,
Do you want to combine data from multiple comment boxes in different screens to one main html box?
Actually, you could use data of multiple comment boxes from different screens directly in the main screen.
Just try Concatenate() function.
For example:
set the main html box's HtmlText:
Concatenate(RichTextEditor1.HtmlText,RichTextEditor2.HtmlText,....)
Maybe your data is more complex, you could try:
Concatenate(If(Not(IsBlank(RichTextComments1.HtmlText)), User().FullName & " " & Now() & " " & RichTextComments1.HtmlText & Char(13)) ,
If(Not(IsBlank(RichTextComments2.HtmlText)), User().FullName & " " & Now() & " " & RichTextComments2.HtmlText & Char(13)) ,
....,
ThisItem.Comment
)
If the solution that I post is not what you want, I suggest you describe with screenshoots in details.
I think I need to know more about what data that you want in the main html textbox.
Best regards,