I am running a VBA code to convert several excel files and I am needing to get the pop up prompt to stop showing. This is the code I am working with
Application.DisplayAlerts = False
ActiveWorkbook.SaveAs Filename:"E\bob_smith\Done.txt" FileFormat:=xlText
2. Application.EnableEvents= False
3. Application.ScreenUpdating= False
Application.DisplayAlerts = False
ActiveWorkbook.SaveAs Filename:"E\bob_smith\Done.txt" FileFormat:=xlText
Application.DisplayAlerts = True
I have tried
1. ActiveWorkbook.SaveAs Filename:"E\bob_smith\Done.txt" FileFormat:=xlText = True
I have tried
1. ActiveWorkbook.SaveAs Filename:"E\bob_smith\Done.txt" FileFormat:=xlText = True
2. Application.EnableEvents= False
3. Application.ScreenUpdating= False