'Transfer a modified sharepoint Excel file to another folder

Is there a way that whenever I modify an Excel file in sharepoint in the "INPUT" folder the file is then copied to the "OUTPUT" folder erasing the previous one?

Thanks in advance



Solution 1:[1]

I see the tag [flow] in your question, so I'll answer with that.

This is a straight forward flow to create. You need two steps

  • The trigger is a Sharepoint one - When a file is created or modified in a folder. You provide the site name and the source folder
  • The next action is a Sharepoint Move file.
    • Current Site address is the same as the trigger
    • File to move is the Dynamic Content x-ms-file-id
    • Destination Site is the site where you want to copy the file to
    • Destination folder is the target folder
    • Choose your overwrite strategy, presumably 'Replace'

enter image description here

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Josh