I have 3 excel sheets with each containing around 6 lakh rows (the maximum row that excel can have is 1048576). How can I arrive at one pivot consolidating data from all 3 sheets.
If you have Excel 2013 or later and have PowerQuery.
Query and merge all sheets in PQ editor. Load as connection only and to data model. Use resulting model as PivotTable source.
If using older version or do not have PQ. It's going to be significantly more difficult to do this and will require some knowledge of VBA and/or databases.
2. Load data to external db, consolidate to single table. And use that as source for your PivotTable data.
3. Use intermediate workbook/sheets to aggregate data before loading to PivotTable. Note that you will lose ability to drill down to raw data level with this approach. If you need that level of drill down... you'll need to create system using VBA to extract source data from aggregated data.
prakash, easiest option might be Get & Transform (Power Query).
What is the Excel version you are using?
Are it 3 sheets in a single workbook, or 3 different workbooks?
prakash, easiest option might be Get & Transform (Power Query).
What is the Excel version you are using?
Are it 3 sheets in a single workbook, or 3 different workbooks?
It uses PowerBI, but most of the process is the same. Only difference being, after you append all sheets into one query/table. Instead of loading to sheets, use "Close & Load To..." and specify connection only and load to data model.