Forum Discussion
Excel
Jul 04, 2022Iron Contributor
Import text file with the help of VBA
Hello Everyone, I have tried VBA code and its work. But If our original Workbook has No data in sheet 1, It Starts adding other sheets. It's not Started filling with sheet one. like - ...
- Jul 04, 2022
I'd delete the empty sheet at the end of the code:
Application.DisplayAlerts = False Worksheets(Worksheets.Count).Delete Application.DisplayAlerts = True
HansVogelaar
Jul 04, 2022MVP
I'd delete the empty sheet at the end of the code:
Application.DisplayAlerts = False
Worksheets(Worksheets.Count).Delete
Application.DisplayAlerts = True
Excel
Jul 04, 2022Iron Contributor
Thank you so much sir..