ThrottleWorks
Excel Ninja
Hi,
I have provided an option in macro to save the output report at a predefined path.
File name is saved at a different cell.
My doubt is, is there any way to check if the path entered by a user in an excel cell in valid.
I do know how to do it, can anyone please help me in this.
Please note - This is not urgent.
Code used (taken from this Forum only) by me to save the file.
Application.DisplayAlerts = False
ActiveWorkbook.SaveAs Filename:=MacroSht.Range("A1").Value & "\" & MacroSht.Range("B1").Value & ".xls", FileFormat:=xlNormal
MacroBook.Close
Application.DisplayAlerts = True
I have provided an option in macro to save the output report at a predefined path.
File name is saved at a different cell.
My doubt is, is there any way to check if the path entered by a user in an excel cell in valid.
I do know how to do it, can anyone please help me in this.
Please note - This is not urgent.
Code used (taken from this Forum only) by me to save the file.
Application.DisplayAlerts = False
ActiveWorkbook.SaveAs Filename:=MacroSht.Range("A1").Value & "\" & MacroSht.Range("B1").Value & ".xls", FileFormat:=xlNormal
MacroBook.Close
Application.DisplayAlerts = True