You are on page 1of 30

Pivot tables are one of Excel's most powerful features.

A pivot table allows


you to extract the significance from a large, detailed data set.
Our data set consists of 214 rows and 6 fields. Order ID, Product, Category,
Amount, Date and Country.

Insert a Pivot Table


To insert a pivot table, execute the following steps.
1. Click any single cell inside the data set.
2. On the Insert tab, click PivotTable.

The following dialog box appears. Excel automatically selects the data for
you. The default location for a new pivot table is New Worksheet.
3. Click OK.

Drag fields
The PivotTable field list appears. To get the total amount exported of each
product, drag the following fields to the different areas.
1. Product Field to the Row Labels area.
2. Amount Field to the Values area.
3. Country Field to the Report Filter area.

Below you can find the pivot table. Bananas are our main export product.
That's how easy pivot tables can be!

Sort
To get Banana at the top of the list, sort the pivot table.
1. Click any cell inside the Total column.
2. The PivotTable Tools contextual tab activates. On the Options tab, click the
Sort Largest to Smallest button (ZA).

Result.

Filter
Because we added the Country field to the Report Filter area, we can filter
this pivot table by Country. For example, which products do we export the
most to France?

1. Click the filter drop-down and select France.


Result. Apples are our main export product to France.

Note: you can use the standard filter (triangle next to Product) to only show
the totals of specific products.

Change Summary Calculation


By default, Excel summarizes your data by either summing or counting the
items. To change the type of calculation that you want to use, execute the
following steps.
1. Click any cell inside the Total column.
2. Right click and click on Value Field Settings...

3. Choose the type of calculation you want to use. For example, click Count.

4. Click OK.
Result. 16 out of the 28 orders to France were 'Apple' orders.

Two-dimensional Pivot Table


If you drag a field to the Row Labels area and Column Labels area, you can
create a two-dimensional pivot table. For example, to get the total amount
exported to each country, of each product, drag the following fields to the
different areas.
1. Country Field to the Row Labels area.
2. Product Field to the Column Labels area.
3. Amount Field to the Values area.
4. Category Field to the Report Filter area.

Below you can find the two-dimensional pivot table.

To easily compare these numbers, create a pivot chart and apply a filter.
Maybe this is one step too far for you at this stage, but it shows you one of
the many other powerful pivot table features Excel has to offer.

Do you like this free website? Please follow us on


Google+
Learn more about pivot tables, use the
side menu >>
Go to Top: Pivot Tables | Go to Next Chapter: Tables
Go

Chapter
Pivot Tables

Learn more, it's easy

Group Pivot Table Items

Multi-level Pivot Table

Frequency Distribution

Pivot Chart

Slicers

Update Pivot Table

Calculated Field/Item

Download Excel File


pivot-tables.xls

Follow Excel Easy


COPYRIGHT (C) 2010-2015 WWW.EXCEL-EASY.COM. EXCEL PIVOT TABLES. ALL RIGHTS RESERVED.
EXCEL 2010 TUTORIAL | HOW TO

What is a Macro?
A Microsoft Office Macro (as this functionality applies to several of the
MS Office Applications) is simply Visual Basic for Applications (VBA)
code saved inside a document. For a comparable analogy, think of a
document as HTML and a macro as Javascript. In much of the same
way that Javascript can manipulate HTML on a webpage, a macro can
manipulate a document.
Macros are incredibly powerful and can do pretty much anything your
imagination can conjure. As a (very) short list of functions you can do
with a macro:

Apply style and formatting.

Manipulate data and text.

Communicate with data sources (database, text files, etc.).

Create entirely new documents.

Any combination, in any order, of any of the above.

Creating a Macro: An Explanation by Example


We start with your garden variety CSV file. Nothing special here, just a
1020 set of numbers between 0 and 100 with both a row and column

header. Our goal is to produce a well formatted, presentable data


sheet which includes summary totals for each row.

As we stated above, a macro is VBA code, but one of the nice things
about Excel is you can create/record them with zero coding required
as we will do here.

To create a macro, go to View > Macros > Record Macro.

Assign the macro a name (no spaces) and click OK.

Once this is done, all of your actions are recorded every cell change,
scroll action, window resize, you name it.

There are a couple of places which indicate Excel is record mode.


One is by viewing the Macro menu and noting that Stop Recording
has replaced the option for Record Macro.

The other is in the bottom right corner. The stop icon indicates it is in
macro mode and pressing here will stop the recording (likewise, when
not in record mode, this icon will be the Record Macro button, which
you can use instead of going to the Macros menu).

Now that we are recording our macro, lets apply our summary
calculations. First add the headers.

Next, apply the appropriate formulas (respectively):

=SUM(B2:K2)

=AVERAGE(B2:K2)

=MIN(B2:K2)

=MAX(B2:K2)

=MEDIAN(B2:K2)

Now, highlight all the calculation cells and drag the length of all our
data rows to apply the calculations to each row.

Once this is done, each row should display their respective


summaries.

Now, we want to get the summary data for the entire sheet, so we
apply a few more calculations:

Respectively:

=SUM(L2:L21)
=AVERAGE(B2:K21) *This must be calculated across all data
because the average of the row averages does not necessarily
equal the average of all the values.

=MIN(N2:N21)

=MAX(O2:O21)

=MEDIAN(B2:K21) *Calculated across all data for the same


reason as above.

Now that the calculations are done, we will apply the style and
formatting. First apply general number formatting across all the cells
by doing a Select All (either Ctrl + A or click the cell between the row
and column headers) and select the Comma Style icon under the
Home menu.

Next, apply some visual formatting to both the row and column
headers:

Bold.

Centered.

Background fill color.

And finally, apply some style to the totals.

When all is finished, this is what our data sheet looks like:

Since we are satisfied with the results, stop the recording of the
macro.

Congratulations you have just created an Excel macro.

In order to use our newly recorded macro, we have to save our Excel
Workbook in a macro enabled file format. However, before we do that,
we first need to clear all the existing data so that it is not embedded in
our template (the idea being every time we use this template, we will
import the most up-to-date data).
To do this, select all cells and delete them.

With the data now cleared (but the macros still included in the Excel
file), we want to save the file as a macro enabled template (XLTM) file.
It is important to note that if you save this as a standard template

(XLTX) file then macros will not be able to be run from it. Alternately,
you can save the file as a legacy template (XLT) file, which will allow
macros to be run.

Once you have saved the file as a template, go ahead and close
Excel.

Using an Excel Macro


Before covering how we can apply this newly recorded macro, it is
important to cover a few points about macros in general:

Macros can be malicious.

See the point above.

VBA code is actually quite powerful and can manipulate files outside
of the scope of the current document. For example, a macro could
alter or delete random files in your My Documents folder. As such, it is
important to make sure you only run macros from trusted sources.

To put our data format macro to use, open the Excel Template file
which was created above. When you do this, assuming you have
standard security settings enabled, you will see a warning across the
top of the workbook which says that macros are disabled. Because we
trust a macro created by ourselves, click the Enable Content button.

Up next, we are going to import the latest data set from a CSV (this is
the source the worksheet used to create our macro).

To complete the import of the CSV file, you may have to set a few
options in order for Excel to interpret it correctly (e.g. delimiter,
headers present, etc.).

Once our data is imported, simply go to the Macros menu (under the
View tab) and select View Macros.

In the resulting dialog box, we see the FormatData macro we


recorded above. Select it and click Run.

Once running, you may see the cursor jump around for a few
moments, but as it does you will see the data being
manipulated exactly as we recorded it. When all is said and done, it
should look just like our original except with different data.

Looking Under the Hood: What Makes a Macro Work


As we have mentioned a couple of times, a macro is driven by Visual
Basic for Applications (VBA) code. When you record a macro, Excel
is actually translating everything you do into its respective VBA
instructions. To put it simply you dont have to write any code
because Excel is writing the code for you.
To view the code that makes our macro run, from the Macros dialog
click the Edit button.

The window that opens displays the source code that was recorded
from our actions when creating the macro. Of course, you can edit this
code or even create new macros entirely inside of the code window.
While the recording action used in this article will likely fit most needs,
more highly customized actions or conditional actions would require
you to edit the source code.

Taking Our Example One Step Farther


Hypothetically, assume our source data file, data.csv, is produced by
an automated process which always saves the file to the same
location (e.g. C:\Data\data.csv is always the most recent data). The
process of opening this file and importing it can be easily made into a
macro as well:
1. Open the Excel Template file containing our FormatData
macro.
2. Record a new macro named LoadData.

3. With the macro recording, import the data file like you normally
would.
4. Once the data is imported, stop recording the macro.
5. Delete all the cell data (select all then delete).
6. Save the updated template (remember to use a macro enabled
template format).
Once this is done, whenever the template is opened there will be two
macros one which loads our data and the other which formats it.

If you really wanted to get your hands dirty with a bit of code editing,
you could easily combine these actions into a single macro by copying

the code produced from LoadData and inserting it at the beginning of


the code from FormatData.

You might also like