Question

Here is the screenshot of the source and destination:

Here is the screenshot of the source and destination:1. I am working on a flow which updates a column SME Comment CK on the basis of another column SME Comment. These columns are multiline text. but when the column gets updated I can see the html tags in it. How can I update the column as it is in SME Comment. PFA the screenshot for reference.enter image description here

  1. Also, I have another column resource name which has data in the format - Patrick_Jay, Eric_D_Dsouza. I want these to be updated in another column Resource email id in the format-Patrick.Jay@gmail.com, Eric.d.Dsouza@gmail.com. This not need to be via flow. is this possible in sharepoint?
Was it helpful?

Solution

Screenshot of flow:

enter image description here

Screenshot of Result:

enter image description here

Screenshot of Sharepoint list columns:

enter image description here

  1. See screen shot from Power automate how to copy multiline (not sure how you managed to get the html tags in there!). I am assuming here that you are not using http request to update the columns. Here we are copying the multilines from the column Source to the column Target.

enter image description here

enter image description here

  1. You can make the Resource email id a calculated column and put in the following formular:

=IF(ISBLANK([resource name]), "", [resource name]&"@gmail")

this will append the "@gmail" to the resource name or leave the field empty if resource name field is empty.

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top