Create unique filename by adding incremental number
问题 I'm trying to increment file names if a previously numbered one exists. For example, it should check if "Example.csv" exists. If so, the new file should be called "Example2.csv", then "Example3.csv", "Example4.csv" and so on. Here's my code so far: $fileNum = 2 ; The $month variable is defined earler in the script but I'll define another var for this example $month = "January" If FileExists("Emissions Log - " & $month & ".csv") Then If FileExists("Emissions Log - " & $month & $fileNum & ".csv