Copy Sheet into a New Workbook and Save it & Current Date

Поділитися
Вставка
  • Опубліковано 24 лис 2021
  • How to Copy a Sheet from the ActiveWorkbook in the New and Save the New Workbook in the related folder with Current Date.
    To do it you will do following using VBA:
    1 Open the New Workbook
    2 Copy Active Sheet into the New Workbook
    3 ReName this Sheet in the New Workbook
    4 Cancel the default Sheet1 from the New Workbook
    5 Give the Name to the New Workbook with the Current Date
    6 Save the New Workbook in the related folder
    7 Receive the message: "This Workbook is saved with the name:
    Name & Current Date"
    My Links:
    🔴UA-cam: / myexcellife
    🔴Pinterest: www.pinterest.es/jekasama/
    🔴Twitter: / jeka_sama
    🔴Instagram: / my_excel_life
    Thank You for Visiting my Channel ❤️
    #MyExcelLife #ExcelTutorials #exceltips #excel @MyExcelLife

КОМЕНТАРІ • 14

  • @a.fleischbender7681
    @a.fleischbender7681 9 місяців тому

    Great turorial! Very educational

  • @eleonoraa.c.1706
    @eleonoraa.c.1706 Рік тому

    Great tutorial, very helpful! Thx a lot! 😘

  • @alializadeh8195
    @alializadeh8195 2 роки тому +1

    Thanx

  • @sunitaa1510
    @sunitaa1510 2 роки тому +1

    Easy explain madi full sharcut key

  • @sohelnirban5372
    @sohelnirban5372 Рік тому +1

    Hello if I want to copy only specific range instead of full sheet then what would be VBA code ?? Could you please answer ??

    • @MyExcelLife
      @MyExcelLife  Рік тому

      Hi, it depends where you would like to copy it - To the same sheet/workbook?

    • @sohelnirban5372
      @sohelnirban5372 Рік тому +1

      @@MyExcelLife no I want to copy specific range and paste in to new workbook then this new workbook autosave in specific folder

    • @MyExcelLife
      @MyExcelLife  Рік тому

      @@sohelnirban5372 You can do it by following - you will open a new workbook and use copy range to the first sheet and then to save it

  • @simondechoisy779
    @simondechoisy779 Рік тому

    Can I just say that using active workbook, activesheet and the sheet name as opposed to the sheet code name is something that no developer worth his salt would ever do.
    Also you could simply assign to the new sheet rather than copying.

    • @MyExcelLife
      @MyExcelLife  Рік тому

      Hi, thank you for your comment. Really there are several options to copy the sheet using vba. I explained one of them which is used by me.