Summary of "How to Append Multiple Excel Files in One Sheet | Power Query Tutorial in Hindi"

How to append multiple Excel/CSV files into one sheet using Power Query (Hindi tutorial)

Overview

Step-by-step method (detailed)

  1. Prepare files

    • Ensure all source files have identical column headers and column order.
    • Put all files to be combined into a single folder (avoid unrelated files in that folder).
  2. Start Power Query

    • Excel → Data tab → Get Data → From File → From Folder.
    • Select the folder containing the files.
    • Click Transform Data (don’t click Combine & Load immediately if you need to transform).
  3. Keep only the Content column

    • In the query preview, remove other columns (right-click the Content column → Remove Other Columns). The Content column contains file binaries.
  4. Extract workbook content

    • Add Column → Custom Column.
    • Name it (e.g., Combine) and use the formula: Excel.Workbook([Content])

    • Click OK. This converts each file binary to a record/table (returns fields such as Name, Data, Item, Kind, Hidden).

  5. Remove the original Content column

    • Delete the Content column (right-click → Remove).
  6. Expand the workbook list

    • Click the double-arrow expand icon on the new Combine column.
    • In the expand dialog, select the fields you need (commonly Name and Data). Uncheck “Use original column name as prefix” to avoid extra prefixes.
    • Click OK.
  7. Expand the Data column to actual table columns

    • Click the expand icon next to the Data column (this shows actual table columns from each file).
    • Select the data columns you want (e.g., 9 columns). Click OK.
    • Rows from all files will be stacked.
  8. Fix header/duplicate header rows

    • If header rows from each file appear as data rows:
      • Use Home → Use First Row as Headers if needed.
      • Remove repeated header rows by filtering: pick a column that contains the header text (e.g., CustomerName = “CustomerName”) and uncheck that value to remove those rows.
      • Alternatively, filter/remove rows where all columns equal header values.
  9. Correct data types

    • Select all columns (Ctrl+A) → Transform → Detect Data Type (Power Query scans up to ~1000 rows and assigns types).
    • Manually adjust any column data type if needed.
  10. Load results

    • Home → Close & Load to load into Excel as a table (if within Excel row limits).
    • Or Home → Close & Load To… to choose Connection only, PivotTable report, Data Model, or other destinations (useful for very large datasets).
  11. Refresh when new files are added

    • Add/copy new files to the same folder (keep naming/structure consistent), then right-click the query/table in Excel and choose Refresh — Power Query will append new files automatically.

Key options & tips

Common mistakes & best practices (checklist)

Alternatives to Power Query

Troubleshooting notes

Speakers / sources in the video

Category ?

Educational


Share this summary


Is the summary off?

If you think the summary is inaccurate, you can reprocess it with the latest model.

Video