Im running into the following problem:
Got a flow that creates folders in SharePoint from Accounts in CRM dynamics.
But in CRM it is possible to use special characters in the accountname.
When the flow gets triggered and a special character is used.
It fails because a folder name can`t contain one of these characters.
Example of invalid characters:
# % * : < > ? / |
Im trying to replace these characters with @replace. But i dont know if its possible to replace all the characters in one function?
What i got now is:
replace(body('Account')['name'], '#, %, *, :, <, >, ?, /, |', '')
Please let me know if its possible