I’m trying to build a scenario in Make where an Excel file is created from a template. If the file name already exists in the target OneDrive folder, I want Make to automatically append a version number such as:
filename.xlsx
filename_v2.xlsx
filename_v3.xlsx
etc.
I do not want make to overwrites the file that is already there.
Can you please provide guidance or an example for how to implement this version-incrementing logic inside Make (using search modules, iterators, or functions)?
Thanks. So right now I copy the template (Copy a File). it is assigned a new name. Then progress to Get a file. Perhaps after that I add something to change the file name? Thanks.
Thank you. When I do the search, how do find out what version is there? V1, V2, V3. Also, how do I rev it rather than overwrite the file name. Suggestions welcome. Thank you.