COMBINE Multiple Excel WORKBOOKS into One|Combine data from multiple sheets into single sheet

Поделиться
HTML-код
  • Опубликовано: 29 ноя 2020
  • In this video, we’ll see how to MERGE the FIRST WORKSHEET from several Excel workbooks
    Combine data from multiple sheets into a single sheet
    Excel coding Program link : docs.google.com/document/d/1M...
    #excel #combinemultiplesheet #Combinedata #ttamiltechnology
  • НаукаНаука

Комментарии • 38

  • @sureshkumara6642
    @sureshkumara6642 2 года назад +2

    மிக மிக அருமை உங்களுக்கு கோடி நன்றிகள்

  • @sastha1941
    @sastha1941 2 года назад +2

    DIFFICULT PROBLEMS IN SIMPLE SOLUTIONS .....THANKYOU🙂

  • @ranjithrash5329
    @ranjithrash5329 2 года назад

    Very use ful bro... and explanation was good

  • @vijayrp5218
    @vijayrp5218 Год назад

    Great !!! Simple and worked well thanks bro

  • @SridharChandrasekaran
    @SridharChandrasekaran 2 года назад

    romba thanks bro, you've made life easy, god bless you

  • @saranyaravi4161
    @saranyaravi4161 3 года назад +2

    Sir pls teach how the code is running..instead saying copy paste..if u r teaching the formula..it il be very useful

  • @senthilchipper6647
    @senthilchipper6647 Год назад

    Sir, Thanks for your knowledge sharing.For merging of work sheets, the excel work sheets contains blank rows also. This programme could not work for this. Then how can we merge the work sheets in a single sheet

  • @fathimabyrose419
    @fathimabyrose419 3 года назад +1

    Thank you

  • @lavendermunch
    @lavendermunch 3 года назад +2

    Your video is very much use full. Pls help me, I need a program for "Combining multiple excel sheets (different Workbook) into one sheet (one by one)...

    • @ttamiltechnology
      @ttamiltechnology  3 года назад +1

      sir same code am using

    • @lavendermunch
      @lavendermunch 3 года назад

      @@ttamiltechnology Am excited with this VBA program.
      But here in Combine Macro, it is not taking all the rows if the sheet is in filter or hide.
      Pls help me.
      The Combined sheet should take all the values even if the sheet in filter or having hidden rows...

    • @satishkumarg5184
      @satishkumarg5184 3 года назад

      @@ttamiltechnology this Code not Working
      Sub GetSheets()
      Path = "C:\Users\satish.kg\Documents\Conversion"
      Filename = Dir(Path & "*.xls")
      Do While Filename ""
      Workbooks.Open Filename:=Path & Filename, ReadOnly:=True
      For Each Sheet In ActiveWorkbook.Sheets
      Sheet.Copy After:=ThisWorkbook.Sheets(1)
      Next Sheet
      Workbooks(Filename).Close
      Filename = Dir()
      Loop
      End Sub

    • @ttamiltechnology
      @ttamiltechnology  3 года назад

      @@lavendermunch my email id seenuvasanit@gmail.com contact me, But am using this code my office work it's working fine,
      i think u did a small mistake only watch the video carefully and try again sir

  • @gmtsenglishdramas8980
    @gmtsenglishdramas8980 2 года назад

    Pls explain about how to merge two or three excel spreadsheet in Android phone

  • @r.gayathrilakshmi2093
    @r.gayathrilakshmi2093 2 года назад

    ஒரு doubt g micro 2nd time run pana overwrite aganum but its creating another sheet athu yepdi g solve pandrathu

  • @betterdaysarecomingorconti360
    @betterdaysarecomingorconti360 2 года назад

    How to add digits of a same number sir

  • @HeartwinXV
    @HeartwinXV Год назад

    Is it possible do the same for CSV file also. Because I tried but its not working

  • @sgsaashik
    @sgsaashik 3 года назад +4

    Bro code run agala

  • @ramesmpoymail
    @ramesmpoymail 2 года назад

    I need your assistance for my job reports

  • @Tamiletronics
    @Tamiletronics 2 года назад

    Compile error syntax in last two lines varuthu

  • @aswinganeshkkr86
    @aswinganeshkkr86 Год назад

    Syntax error bro...
    Any solution

  • @dhineshkumar117
    @dhineshkumar117 3 года назад

    Ji a1 row missing

  • @SuperArulprakash
    @SuperArulprakash 2 года назад

    dear brother i have a different folders with different folder name and it has a Exel files and i want combined altogether in to one Exel file and same time i want to keep the folders can you help me to solve it when i tried with the above it is not happening. thank you God bless if i know the mail id i can send it to mail please understand i am a chef not an IT profession

    • @ttamiltechnology
      @ttamiltechnology  2 года назад

      All fille past in single folder than apply this formula

  • @gpevent9301
    @gpevent9301 2 года назад

    Sir
    Am getting compile error
    Syntax error

  • @vigneshg9415
    @vigneshg9415 2 года назад

    Selection. Copy destination :=sheets("combined") ._
    Cells (Rows. Count, 1).End(x1Up) (2)
    Above mentioned line are red colour and error...
    Pls do the needfull..

    • @aldrinlijo
      @aldrinlijo 2 года назад

      Same error.... Susanta error on that line.

  • @nambirajan1465
    @nambirajan1465 3 года назад

    Run kudutha run agala bro

  • @lavanyadr2402
    @lavanyadr2402 3 года назад

    Error varuthu anna combine sheet panum pothu

  • @cbelginshajo5496
    @cbelginshajo5496 2 года назад

    Public Sub CountWorkSheets()
    MsgBox "The total number sheets of this workbook: " & Application.Sheets.Count
    End Sub