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.
with ActiveWorkbook
NewName = left(.name,2) & format(mid(.name, 3,7)+1, "0000000") & right(.name,5)
end with
Please post exactly what you ran, that caused, "nothing" to happen!Nothing Happens when I run your macro!
ub SaveNext()
'
' SaveNext Macro
'
' Keyboard Shortcut: Ctrl+q
'
With ActiveWorkbook
NewName = Left(.Name, 2) & Format(Mid(.Name, 3, 7) + 1, "0000000") & Right(.Name, 5)
.SaveAs Filename:= _
'"[URL unfurl="true"]https://internalportal.emihub.com/New[/URL] Revenue Streams - Hub Team Site/Private Documents/J NEW RELEASE PROCESS/A. New Release Master List and Entry Form LIVE/[highlight]" & NewName[/highlight] _
, FileFormat:=xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False
End With
End Sub