Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
for each c in range("MyListOfCVS")
workbooks.open OlnPath & c.value
with aciveworkbook
.saveas NewPath & c.value
.close
end with
Next
for each c in range("MyListOfCVS")
workbooks.open OldPath & c.value
with aciveworkbook
.saveas NewPath & c.value
.close
end with
Next