Hi Guys,
I use MS Forms to upload files and Power Automate to move the file from the Forms database which is OneDrive to Sharepoint Site. It works very well my question is that there is a chance to remove user names on uploading files? See below the screenshot from my SharePoint site, looking at the picture, the file name becomes "Sample Scan (100,ppi)_Benedick Divinaflor" it should be "Sample Scan (100,ppi)" ".
Lastly, we upload multiple files per Form.
Here's my Flow, if you notice on the File Name under Created File, I am using Parse JSON to get the file name.
And here's my Parse JSON schema I used.
Solved! Go to Solution.
Here is an expression that might do the trick:
concat(first(split(outputs('name'),'_')),'.',Last(split(last(split(outputs('name'),'_')),'.')))
Ellis
Here is an expression that might do the trick:
concat(first(split(outputs('name'),'_')),'.',Last(split(last(split(outputs('name'),'_')),'.')))
Ellis
In case anyone is interested, a breakdown of the expression:
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
User | Count |
---|---|
7 | |
2 | |
2 | |
2 | |
1 |