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.
sub Splitter()
dim stdPath as string
stdPath = "Base path for where you want to save the files\"
application.screenupdating = false
For each wks in thisworkbook.worksheets
wks.copy
activeworkbook.saveas stdPath & wks.name & ".xls"
activeworkbook.close
next
end sub