Hi @Anonymous ,
Could you please share a bit more about your issue?
Do you mean that the concatenated HTML text value would not be updated in real time when the data card value is updated in your Edit form?
Could you please share a bit more about your concat formula?
Based on the issue that you mentioned, I have made a test on my side, and don't have the issue that you mentioned. If you want to concatenate the data card values within the Edit form, I think the Concatenate function would be better than Concat function in your scenario.
I have made a test on my side, the screenshot as below:
Set the Html Text property of the Html text control to following:
"Form Details as below: <br>" &
Concatenate(
"Title: ", EditForm1.Updates.Title,
"<br> ProjectName: ", EditForm1.Updates.ProjectName,
"<br> Executor: ", EditForm1.Updates.Executor.DisplayName,
"<br> Due Date: ", Text(EditForm1.Updates.DueDate)
)
On your side, if you want to reference the Data card value from your Edit form, please use the following formula:
EditForm1.Updates.ColumnName /* <-- EditForm1 represents the Edit form in your app */
Please consider take a try with above solution, then check if the issue is solved.
Best regards,