Hello, I need help with part of a script that I've been stuck on for a few days.
First, I need an inputbox that will ask if the project is a NEW or a REVISION.
Second, If NEW is typed then the script needs to browes or navigate to a folder structure and read part of a folder name which is a 5 digit number long and pick the next availble number.
Third, if REVISION is typed then script resumes.
This is what I have so far.
'Do
' TryAgin = "No"
' NewRevision = InputBox("Is this a NEW project or a Revision?")
' If NewRevision = "" Then
' MsgBox "You must enter in New or Revision."
' TryAgain = "Yes"
' End If
'Loop While TryAgain = "Yes"
Thanks
First, I need an inputbox that will ask if the project is a NEW or a REVISION.
Second, If NEW is typed then the script needs to browes or navigate to a folder structure and read part of a folder name which is a 5 digit number long and pick the next availble number.
Third, if REVISION is typed then script resumes.
This is what I have so far.
'Do
' TryAgin = "No"
' NewRevision = InputBox("Is this a NEW project or a Revision?")
' If NewRevision = "" Then
' MsgBox "You must enter in New or Revision."
' TryAgain = "Yes"
' End If
'Loop While TryAgain = "Yes"
Thanks