I have a problem with gathering comments into my SharePoint list.
So I have field "comments" into my SharePoint list which stores "Responses Comments" from approve action. When the second level of approve start and also has some comments it just replace the first ones. I tried to fix it with "concat()" function but it seems to not work properly. I have created variable string "comment" which value is my "comment string". Then after "Update item" action I try to use concat function to the field I want to store my strings:
concat(variables('comment'),'\n', items('For_each_2')?['comments']).
How am I suppose to make it work?