Skip to main content

Consolidate Data with Excel built in feature


There are two  consolidation tools in Excel.

 You have three data sets. Each has names down the left side and months across the top. Notice that the names are different, and each data set has a different number of months.

This is the first of three data sets to be consolidated. Names appear in A2:A7. Columns across the top are the months Jan, Feb, and Mar.

Data set 2 has five months instead of 3 across the top. Some people are missing and others are added.

Some names in column A are the same as the previous image, but some are new. There are now five months across the top: Apr, May, Jun, Jul, and Aug.

Data set 3 has four months across the top and a few new names.

The final data set has months Sep, Oct, Nov, Dec. Again, names in column A. Some are repeated and some are new.

The Consolidate command will join data from all three worksheets in to one worksheet.


You want to combine these into a single data set.

The first tool is the Consolidate command on the Data tab. Choose a blank section of the workbook before starting the command. Use the RefEdit button to point to each of your data sets and then click Add. In the lower left, choose Top Row and Left Column.

In the Consolidate dialog box, use the RefEdit button to point to the data on each of the three worksheets. In the lower left corner, make sure to choose Use Labels In: Top Row, Left Column.
This worksheet shows the result of the Consolidation. Names from all three lists appear in A2:A12. Across the top, all 12 months from Jan through Dec appear. Numbers populate the center of the grid. Several cells that should be numeric in the middle are empty instead of 0.

In the above figure, notice three annoyances: Cell A1 is always left blank, the data in A is not sorted, and if a person was missing from a data set, then cells are left empty instead of being filled with 0.

Filling in cell A1 is easy enough. Sorting by name involves using Flash Fill to get the last name in column N. Here is how to fill blank cells with 0:

  1. Select all of the cells that should have numbers: B2:M11.
  2. Press Ctrl+H to display Find & Replace.
  3. Leave the Find What box empty, and type a zero in the Replace With: box.
  4. Click Replace All.

The result: a nicely formatted summary report, as shown below.

Fill in the blanks with zero. Apply a table style.

The other ancient tool is the Multiple Consolidation Range pivot table. Follow these steps to use it:

1. Press Alt+D, P to invoke the Excel 2003 Pivot Table and Pivot Chart Wizard.

2. Choose Multiple Consolidation Ranges in step 1 of the wizard. Click Next.

Press Alt+D P to open the legacy PivotTable and PivotChart Wizard. In Step 1 of 3, choose Multiple Consolidation Ranges.

3. Choose I Will Create the Page Fields in step 2a of the wizard. Click Next.

4. In Step 2b of the wizard, use the RefEdit button to point to each table. Click Add after each.

In the PivotTable wizard Step 2b of 3, specify all three ranges. Specify 0 page fields.

5. Click Finish to create the pivot table, as shown below.

The pivot table has names down the side and months across the top. It is very similar to the Consolidation report, but is refreshable.

Comments

Popular posts from this blog

3D Map in Excel

3D Maps ( Power Map) is available in the Office 365 versions of Excel 2013 and all versions of Excel 2016. Using 3D Maps, you can build a pivot table on a map. You can fly through your data and animate the data over time. 3D Maps lets you see five dimensions: latitude, longitude, color, height, and time. Using it is a fascinating way to visualize large data sets. 3D Maps can work with simple one-sheet data sets or with multiple tables added to the Data Model. Select the data. On the Insert tab, choose 3D Map. (The icon is located to the right of the Charts group.) If you have Excel 2013 you might have to download Power Map Preview from Microsoft to use the feature. Next, you need to choose which fields are your geography fields. This could be Country, State, County, Zip Code, or even individual street addresses. You are given a list of the fields in your data set and drop zones named Height, Category, and Time. Hover over any point on the map to get details such as last sale date and a...

CAGR Dax Measure

CAGR stands for  C ompound  A nnual  G rowth  R ate.  It describes the rate at which an investment would have grown over several years if it had grown at the same rate every year on a compounding, rather than simple, basis.   The CAGR metric is calculated using the following formula: If we were to fit this entire formula into a single measure it may get messy and confusing for other users, so let’s step it out. We will need to create several measures to calculate the individual pieces the CAGR formula.  Of course, this is not the only way to calculate CAGR in Power Pivot, but this is the way we’ve decided to go about it.  So, let’s break it down, we will need the following measures to calculate CAGR: A measure to retrieve the First Year in the data set A measure to retrieve the Last Year in the data set A measure to calculate the Number of Years between the First and Last Years in the data set A measure to aggregate the total sales in the data set...

Turn Data Sideways

Someone built this lookup table sideways, stretching across C1:N2. I realize that I could use HLOOKUP instead of VLOOKUP, but I prefer to turn the data back to a vertical orientation. Copy C1:N2. Right-click in A4 and choose the Transpose option under the Paste Options. Transpose is the fancy Excel word for “turn the data sideways.” I transpose a lot. But I use  Alt+E ,  S ,  E ,  Enter  to transpose instead of the right-click. There is a problem, though. Transpose is a one-time snapshot of the data. What if you have formulas in the horizontal data? Is there a way to transpose with a formula? The first way is a bit bizarre. If you are trying to transpose 12 horizontal cells, you need to select 12 vertical cells in a single selection. Start typing a formula such as  =TRANSPOSE(C2:N2)  in the active cell but do not press Enter. Instead, hold down  Ctrl+Shift  and then press  Enter . This puts a single array formula in the selected cells. T...