Диаграмма сэнки в excel

Sankey diagrams are used to show flow between two or more categories, where the width of each individual element is proportional to the flow rate. These chart types are available in Power BI, but are not natively available in Excel. However, today I want to show you that it is possible to create a Sankey diagram in Excel with the right mix of simple techniques.

Sankey diagram in Excel

While Sankey diagrams are often used to show energy flow through a process, being a finance guy, I’ve decided to show cashflow. The simple Sankey diagram above shows four income streams and how that cash then flows into expenditure or savings.

Download the example file: Click the link below to download the example file used for this post:

Watch the video

This blog post will be slightly different from others; rather than show you how to do each step, I will demonstrate the overall approach. There are additional details covered in the YouTube video.

Watch the video on YouTube.

While I should wait to reveal the secret until the end of the post, I think it will help to explain how it all fits together if I reveal it upfront.

Here is the secret: the Sankey diagram you see in the example file is not one chart, far from it. There are actually 21 charts all stacked on top of each other.

The following image shows the 21 individual charts that could make up a Sankey diagram.

21 individual charts used for Sankey diagram

By setting the backgrounds to be fully transparent, and the shaded lines as partially transparent; overlaying the charts on top of each other creates the Sankey effect. The pillars at each end are 100% stacked column charts, which are also overlaid on top.

Now that I’ve revealed how simple this secret is, let’s look at each stage in a bit more detail. Then you will be able to create your own Sankey diagram templates.

Initial data

Our initial data is a two-dimensional table. The rows are the start point for our Sankey diagram, while the columns are the endpoint. The value at the intersection of these is the flow rate.

Within the template, we also have a named range called Blank. The value in here represents the spacing to be applied between each category.blank space between sankey pillars

Interim calculation tables

To create the Sankey effect from our initial data, we need to create interim calculations.

  • SankeyLines table
  • SankeyStartPillar table
  • SankeyEndPillar table
  • Spacing named range

Let’s look at each in turn.

SankeyLines table

From the source data, we create a table with a row for each possible combination of rows and columns. This table is called SankeyLines table in the example file. Each row category is separated by an additional line which creates the blank spaces we see in the charts.

Our initial SankeyLines table needs to contain the following base information:

Interim data table used for Sanky Diagram

Value

The formula in the Value column is:

=IF(LEFT([@From],5)="Blank",Blank,
INDEX(SankeyData,MATCH([@From],SankeyData[From / To],0),
MATCH([@To],SankeyData[#Headers],0)))

This formula retrieves either:

  • Value from the source table
  • Value of the Blank named range (where it is a row used for spacing between categories).

End Position

The End Position column determines the order of the lines at the end of the Sankey diagram. Where 1 is finishes at the top, 2 is the second item from the top, etc.

SankeyLines table additional data points

To create the data for the 100% stacked area chart, we need to calculate some additional data points:

  • Space above the shaded Sankey line
  • Value of the shaded Sankey line
  • Space below the shaded Sankey line

Our SankeyLines table needs to expand with the following calculations.

SankeyLines table with additional columns

The formulas in each column are as follows:

Above Start

=SUM(SankeyLines[[#Headers],[Value]]:[@Value])-[@Value]

This calculates the amount of space required above the Sankey line at the start point.

Above Mid 1

=[@[Above Start]]

This is sent to equal the Above Start column.

Above Mid 2

=[@[Above End]]

This is set to equal the Above End column (see below)

Above End

=SUM([Value])-SUMIFS([Value],[End Position],">="&[@[End Position]])

This calculates the amount of space required above the Sankey line at the end point.

Value Start, Value Mid 1, Value Mid 2, Value End

=[@Value]

The height of the shaded Sankey line never changes. Therefore, we can set the value of all 4 columns to equal the Value column.

Below Start, Below Mid 1, Below Mid 2, Below End

The columns calculate the amount of space required below the shaded Sankey line. Each calculation is constructed the same way. It takes the SUM([Value]) then takes away the value from the equivalent Start, Mid 1, Mid 2 or End columns.

Below Start:

=SUM([Value])-[@[Above Start]]-[@[Value Start]]

Below Mid 1:

=SUM([Value])-[@[Above Mid 1]]-[@[Value Mid 1]]

Below Mid 2:

=SUM([Value])-[@[Above Mid 2]]-[@[Value Mid 2]]

Below End:

=SUM([Value])-[@[Above End]]-[@[Value End]]

SankeyStartPillars table

The SankeyStartPillar table is reasonably easy to understand. It just needs each row category from the source data listed with a “Blank” item in between.

Start pillar table

The formula for the Value column is:

=SUMIFS(SankeyLines[Value],SankeyLines[From],[@From])

End pillars

The SankeyEndPillar table is similar to the SankeyStartPillar table. It just needs each column category from the source data listed with a “Blank” item in between.

End pillar table

The formula for the Value is:

=SUMIFS(SankeyLines[Value],SankeyLines[To],[@To])

Spacing named range

The final part of the interim calculations is a named range called Spacing. This is used as the Category (horizontal) Axis for the chart. It determines at what point the slope of the chart starts and finishes.

Chart layering

Once all the interim calculations are ready, the chart creation can begin.

Create the individual shaded Sankey lines

Each row of the SankeyLines table needs to be a separate 100% stacked area chart with 3 data series:

Chart linked to source data

Once the chart has the correct series data, it then all comes down to formatting.

Chart formatting to apply

After all the formatting has been completed the chart will become a single grey line.

Chart formatting

If the row in the SankeyLines table starts with “Blank”, then technically it can be deleted, however for completeness, I prefer to keep it there, but set it to No Fill. It means that if I ever need to use it, I can just change the fill color and it can be used as a standard shaded Sankey line.

Once all the shaded Sankey lines have been created, they can be overlaid on top of each other.

Overlapped charts

Create the Sankey pillars

Most of the hard work has now been completed. We just need to create two 100% stacked column charts—one for the start pillar and one for the end pillar.

Sankey - First Pillar

The pillars are set to be formatted as follows:

  • Plot series in reverse order
  • Your preferred fill colors
  • Set the “Blank” sections with No Fill
  • Add data labels to the relevant points.

After all of that, we overly the pillars on top of our chart. Finally, our Sankey diagram is complete.

Conclusion

That’s it. Individually there is nothing too difficult with any of the techniques involved. But they need to be combined in the right way to create the Sankey effect. Initially, this takes quite a long time to create, but once set-up, it can be used over and over with different categories. It’s definitely the case of invest the time once, to create a template big enough then and reuse it.

Related Posts:

  • Ultimate Guide: VBA for Charts & Graphs in Excel (100+ examples)
  • Variable width column charts and histograms in Excel
  • Creating custom Map Charts using shapes and VBA

Headshot Round

About the author

Hey, I’m Mark, and I run Excel Off The Grid.

My parents tell me that at the age of 7 I declared I was going to become a qualified accountant. I was either psychic or had no imagination, as that is exactly what happened. However, it wasn’t until I was 35 that my journey really began.

In 2015, I started a new job, for which I was regularly working after 10pm. As a result, I rarely saw my children during the week. So, I started searching for the secrets to automating Excel. I discovered that by building a small number of simple tools, I could combine them together in different ways to automate nearly all my regular tasks. This meant I could work less hours (and I got pay raises!). Today, I teach these techniques to other professionals in our training program so they too can spend less time at work (and more time with their children and doing the things they love).


Do you need help adapting this post to your needs?

I’m guessing the examples in this post don’t exactly match your situation. We all use Excel differently, so it’s impossible to write a post that will meet everybody’s needs. By taking the time to understand the techniques and principles in this post (and elsewhere on this site), you should be able to adapt it to your needs.

But, if you’re still struggling you should:

  1. Read other blogs, or watch YouTube videos on the same topic. You will benefit much more by discovering your own solutions.
  2. Ask the ‘Excel Ninja’ in your office. It’s amazing what things other people know.
  3. Ask a question in a forum like Mr Excel, or the Microsoft Answers Community. Remember, the people on these forums are generally giving their time for free. So take care to craft your question, make sure it’s clear and concise.  List all the things you’ve tried, and provide screenshots, code segments and example workbooks.
  4. Use Excel Rescue, who are my consultancy partner. They help by providing solutions to smaller Excel problems.

What next?
Don’t go yet, there is plenty more to learn on Excel Off The Grid.  Check out the latest posts:

Any great story means great details and strategic use of visuals.

Besides, it’s a proven fact people don’t like numbers. They are interested in insights. So how can you represent insights in a simple and compelling way?

Sankey Chart Excel

Sankey Chart ExcelSankey Chart Excel

You guessed it right. The solution is incorporating easy-to-read charts into your data story. Sankey Chart for Excel version is one of the easiest charts to understand in the world of data visualization.

Table of Content:

  1. Sankey Chart Definition
  2. Components of a Sankey Chart
  3. How to Create Sankey Diagram in Excel? Step by Step Guide with Example
  4. Why should you use Sankey?
  5. Best Tool to Use to Visualize Data Using Sankey in Excel
  6. How to Install ChartExpo In Excel To Access Sankey For Free
  7. Data Storytelling with Sankey Charts
  8. Wrap Up

Video Tutorial:



Sankey Chart ExcelSankey Chart Excel

What is A Sankey Chart in Excel?

Definition: Sankey Chart visualizes “a flow” from one set of values to the next. The two items being connected are referred to as “nodes.” The connections are labeled as “links.”

Besides, it’s named after an Irishman, Capt. Matthew Sankey, who first used them in a publication on the energy efficiency of a steam engine in 1898. Sankey diagrams were initially used to visualize and analyze energy flows, but they’re a great tool to depict the flow of money, time, and resources.

Directional arrows between the nodes show the flows in:

  • Processes
  • Production system
  • Supply chain

Let’s head to the next section where you’ll learn the building blocks of the Sankey diagram.

Components of a Sankey Chart in Excel

A Sankey is a minimalist diagram that consists of the following:

  • Nodes: This is an element linked by “Flows.” Furthermore, it represents the events in each path.
  • Flows: Flows link the nodes. And each flow is specified by the names of its source and target nodes in the “from” and “to” fields. Besides, the value in the width field defines the thickness of the flow.
  • Drop-offs: A drop-off is a flow without a target node.

This brings us to the meaty part of the blog: the best tool to use to create a Sankey Chart in Excel that complements your data story.

Please pay attention because this is one of the essential parts of the blog.

Sankey Chart ExcelSankey Chart Excel

How to Create Sankey Diagram in Excel – Step by Step Guide with Example?

Creating a Sankey diagram in Excel is very easy if you have ChartExpo add-in installed. You just need to select the Sankey diagram, check the sample data provided with this chart, replace the data with your own data and in one click your visualization will be ready.

Storytelling with data is the best way to present your data in a meaningful way. Sankey is one of the best visualizations which gives colors and life to your data story. Let’s have one practical application of the Sankey diagram.

Energy Management Application

Imagine you’ve been tasked by the Energy Commission of a hypothetical country to analyze their gigantic data. They want to know various details about domestic energy consumption, namely:

  • The contribution of each energy-generating source
  • The amount of energy lost
  • The energy contribution of cleaner and greener sources
  • Common uses of energy by consumer segments (commercial versus domestic use)

The Energy Commission wants a data story to use for the forthcoming launch of their 10-year Plan. The table below has the sample data we’ll use for the scenario above.

Note: the table below is pretty long to show you that Sankey can visualize gigantic data sets without obscuring key insights.

Apologies in advance if you find the table below weirdly long.

Energy Type Main Source Source type Energy Source Usage End-User MegaWatt
Agricultural waste Bio-conversion Solid Thermal generation Losses in process Lost 5
Agricultural waste Bio-conversion Solid Thermal generation Electricity grid Industry 7.3
Agricultural waste Bio-conversion Solid Thermal generation Electricity grid Heating and cooling – commercial 5.1
Agricultural waste Bio-conversion Solid Thermal generation Electricity grid Heating and cooling – homes 3.7
Agricultural waste Bio-conversion Solid Thermal generation Electricity grid Lighting & appliances – commercial 4.9
Agricultural waste Bio-conversion Solid Thermal generation Electricity grid Lighting & appliances – homes 2
Other waste Bio-conversion Solid Thermal generation Losses in process Lost 7.2
Other waste Bio-conversion Solid Thermal generation Electricity grid Industry 5.4
Other waste Bio-conversion Solid Thermal generation Electricity grid Heating and cooling – commercial 6.7
Other waste Bio-conversion Solid Thermal generation Electricity grid Heating and cooling – homes 4.8
Other waste Bio-conversion Solid Thermal generation Electricity grid Lighting & appliances – commercial 7.4
Other waste Bio-conversion Solid Thermal generation Electricity grid Lighting & appliances – homes 2.5
Marina algae Bio-conversion Solid Thermal generation Losses in process Lost 0.7
Marina algae Bio-conversion Solid Thermal generation Electricity grid Industry 0.5
Marina algae Bio-conversion Solid Thermal generation Electricity grid Heating and cooling – commercial 0.9
Marina algae Bio-conversion Solid Thermal generation Electricity grid Heating and cooling – homes 0.5
Marina algae Bio-conversion Solid Thermal generation Electricity grid Lighting & appliances – commercial 0.8
Marina algae Bio-conversion Solid Thermal generation Electricity grid Lighting & appliances – homes 0.6
Land-based bioenergy Bio-conversion Solid Thermal generation Losses in process Lost 1.3
Land-based bioenergy Bio-conversion Solid Thermal generation Electricity grid Industry 2.5
Land-based bioenergy Bio-conversion Solid Thermal generation Electricity grid Heating and cooling – commercial 3.2
Land-based bioenergy Bio-conversion Solid Thermal generation Electricity grid Heating and cooling – homes 0.7
Land-based bioenergy Bio-conversion Solid Thermal generation Electricity grid Lighting & appliances – commercial 1.4
Land-based bioenergy Bio-conversion Solid Thermal generation Electricity grid Lighting & appliances – homes 0.9
Biomass import Bio-conversion Solid Thermal generation Losses in process Lost 0.4
Biomass import Bio-conversion Solid Thermal generation Electricity grid Industry 0.7
Biomass import Bio-conversion Solid Thermal generation Electricity grid Heating and cooling – commercial 0.8
Biomass import Bio-conversion Solid Thermal generation Electricity grid Heating and cooling – homes 0.3
Biomass import Bio-conversion Solid Thermal generation Electricity grid Lighting & appliances – commercial 0.6
Biomass import Bio-conversion Solid Thermal generation Electricity grid Lighting & appliances – homes 0.2
Nuclear reserves Nuclear Plant Solid Thermal generation Losses in process Lost 50
Nuclear reserves Nuclear Plant Solid Thermal generation Electricity grid Industry 13
Nuclear reserves Nuclear Plant Solid Thermal generation Electricity grid Heating and cooling – commercial 8
Nuclear reserves Nuclear Plant Solid Thermal generation Electricity grid Heating and cooling – homes 6
Nuclear reserves Nuclear Plant Solid Thermal generation Electricity grid Lighting & appliances – commercial 11
Nuclear reserves Nuclear Plant Solid Thermal generation Electricity grid Lighting & appliances – homes 4
Coal reserves Coal Solid Thermal generation Losses in process Lost 4.7
Coal reserves Coal Solid Thermal generation Electricity grid Industry 3.1
Coal reserves Coal Solid Thermal generation Electricity grid Heating and cooling – commercial 4.2
Coal reserves Coal Solid Thermal generation Electricity grid Heating and cooling – homes 0.7
Coal reserves Coal Solid Thermal generation Electricity grid Lighting & appliances – commercial 4.8
Coal reserves Coal Solid Thermal generation Electricity grid Lighting & appliances – homes 0.5
Gas reserves Natural Gas Gas Thermal generation Losses in process Lost 5.1
Gas reserves Natural Gas Gas Thermal generation Electricity grid Industry 8.4
Gas reserves Natural Gas Gas Thermal generation Electricity grid Heating and cooling – commercial 7.9
Gas reserves Natural Gas Gas Thermal generation Electricity grid Heating and cooling – homes 4.8
Gas reserves Natural Gas Gas Thermal generation Electricity grid Lighting & appliances – commercial 7.3
Gas reserves Natural Gas Gas Thermal generation Electricity grid Lighting & appliances – homes 3.5

Let’s unleash ChartExpo Add-in on this data.

Follow the incredibly simple and easy steps below to visualize your data using Sankey Charts.

  • Click on Add-ins > ChartExpo > Insert, as shown below

Sankey Chart Excel

  • Click Sankey Chart.

Sankey Chart Excel

  • Select the variables: Type, Main Source, and Source type, Energy Source, Usage, End User, Mega Watt .
  • Click on Create Chart from sheet data, as shown below.

Let’s check out our resulting chart.

Sankey Chart Excel

  • You have the freedom to edit the chart to highlight key Just press the Edit Chart button, as shown above.

Check our resulting chart after editing.

Sankey Chart Excel

Insights

  • Energy from cleaner sources

Sankey Chart Excel

Sankey Chart ExcelSankey Chart Excel

  • Energy from nuclear sources

Sankey Chart Excel

  • The amount of energy

Sankey Chart Excel

  • The amount of energy used for industrial purpose

Sankey Chart Excel

Sankey Chart Excel

Sankey Chart ExcelSankey Chart Excel

As you’ve seen above in the Energy Flow Diagram generated using Sankey Chart, I’ve cherry-picked the insights that are relevant to the data story. Congratulations if you’ve reached this point. The long but insightful journey is coming to a conclusion.

If you have not installed ChartExpo yet or having any kind of difficulty installing it you can watch out guide to install ChartExpo for Excel next in the blog.

Why should you use Sankey?

  1. Sankey Charts for Excel spreadsheet allows you to show complex processes visually, with a focus on a single aspect or resource that you want to highlight.
  2. Sankey offers the added benefit of supporting multiple viewing levels.

Besides, audiences can get a high-level view, see specific details, or generate interactive views.

  1. These visualization charts make dominant contributors or consumers stand out. So your audience can see critical insights, such as relative magnitudes and areas with the largest opportunities.

Let’s assume you have data from different but interlinked segments. You’ve noticed that there’s a leakage point. And you want to bring this to the attention of your company management.

How would you go about it?

You guessed it absolutely right. A data story is a very powerful tool you can use to persuade the management to act on your recommendations.

But then, how would you make this story irresistible?

You need to use simple and easy-to-interpret visualizations. You don’t want your audience to drown in confusion trying to decode insights from a chart. This is a morale killer.

A Sankey is strategically positioned to visualize the data scenario above. And this is because it can help paint a vivid picture of the leakage in the audience’s minds (in our case, company management). Yes, you heard that right.

This chart will show the exact points where the leakage is occurring. Like we said earlier, leakages, also known as drop-off zones, are flows without a target node.

Choosing relevant and easy-to-interpret charts makes it easy for your audience to understand and engage with the data.

The Best Tool to Use to Visualize Your Data Using Sankey Diagram in Excel

Before we delve right into the tools you can use, we’ll answer the question that’s lingering in your mind.

Where can you apply Sankey Charts for Excel?

Like we said earlier, these charts are strategically positioned to visualize data with flow characteristics, namely:

  • Supply chain management
  • Energy management
  • Cash Flow Diagrams for budget and revenue allocation
  • The flow of customers in a website (digital marketing)
  • Survey analysis

We’ll later cover energy management use in detail in the coming section. Keep reading to avoid missing this highly insightful part of the blog.

Let’s talk about Excel because it is one of the most used tools for visualizing data besides Google Sheets. This spreadsheet app is incredibly popular because it’s easy to use. Besides, it has been there for decades, making it familiar to almost anyone who works with data.

So how can you use Excel to create Sankey Charts that are easy to read and interpret?

Remember, for a data story to be compelling to your target audience, it should have charts that lend clarity. You don’t want any critical insight to be obscured by unnecessary stuff, such as heavy colors.

We’re sorry to disappoint you, but Excel does not have Sankey templates.

Yes, you heard that right. Even Microsoft Office 365, which is the most updated version, doesn’t have Sankey templates.

So What’s The Solution?

The solution is not to ditch your beloved Excel. No, we’re not advocating you to do away with the spreadsheet tool you’ve probably known since childhood.

You need to supercharge it with an add-in to make it a reliable partner for data visualization.

Microsoft knew very well it’s impossible to cater to all the data visualization needs you may have. And that’s why they came up with an app store where you can access third-party add-ins to get various specialized tasks done with ease.

Well, there’s a reliable and incredibly easy-to-use add-in called ChartExpo. And it comes jam-packed with Sankey templates and other 80-plus charts.

Sankey Chart ExcelSankey Chart Excel

What is ChartExpo?

ChartExpo is a cloud-hosted add-in that transforms your Excel spreadsheet app into a highly responsive data visualization tool.

Wait! That’s not all. 

This highly affordable data visualization tool comes with over 80 chart templates to grant you a broader choice of visuals to select. With ChartExpo, you don’t need to know programming or coding. Yes, it’s that easy peasy to use.

When you’re curating a data story, feel confident you have a reliable data visualization buddy on your side. ChartExpo provides you unlimited freedom to customize your Sankey Chart.

Remember, you can highlight the key insights you want your audience to take in with ease. You just need a few mouse clicks to access a Sankey Chart for Excel that fits seamlessly within your data narrative.

More Money-saving Benefits For You!

  • ChartExpo has an in-built library with 80-plus charts to ensure you’ve got enough stock to test for the best.
  • ChartExpo add-in for Excel comes with a free 7-day trial.
  • Essentially, if you’re not satisfied with the tool within a week, you can opt out as quickly as signing up for a trial.
  • The number of paying users after the trial period is a staggering 80%. And this means that ChartExpo does not disappoint.
  • ChartExpo add-in is ONLY $10 a month after the end of the trial period.
  • You have a 100% guarantee that your computer or Excel application won’t be slowed down. If it does, just opt out of the risk-free 7-day trial.
  • You can export your insightful, easy-to-read, and intuitive charts in JPEG and PNG: the world’s most-used formats for sharing images.

Let’s head to the meaty part of the blog: the section where you get to practice what you’ve learned. Follow the simple steps below in preparation for the next section.

How to Install ChartExpo In Excel To Access Sankey For Free?

To Get Started with ChartExpo for Excel add-In, follow the Simple and Easy Steps Below.

  • Open your Excel application (Excel 2013 with sp1) or later).
  • Open the worksheet and click on the INSERT menu
  • You’ll see the My Apps option.
  • Click on My Apps and then click on See All.

Sankey Chart Excel

  • You will see the screen, as shown in the screenshot below.
  • Search for ChartExpo Add-in on my Apps Store.
  • Click on the Insert button.
  • The add-in will be added to the Excel application, as shown in the screenshot below.
  • Log in with your Microsoft account or create a new account by clicking the Create New link
  • Login with the newly created account and start using the add-in.
  • Enter your newly created account and start using the ChartExpo add-in. You’re only required to log in for the first time. Next time, ChartExpo won’t ask for your details again.
  • Now you can start using ChartExpo for Excel to access incredible Sankey visualization of your data.

Sankey Chart Excel

  • You’ll see an extensive library of visual charts categorized into 6 different groups.
  • More so, you can expand any group by clicking on it to see a list of available visualizations.

Sankey Chart Excel

  • Click on the Sankey Chart button (red box), as shown

Now you have a clue about why data stories matter to you, let’s delve into its core building blocks.

5 Building Blocks of a Compelling Data Story

#1: Select the Best Chart for Your Data Narrative

Selecting the best visualization possible to highlight key insights in a narrative depends on your goals. Yes, it depends on the key takeaway you want to communicate to your audiences.

If you’ve ever been a victim of boring, long, and disorganized presentations and meetings, raise your hand.

We’re kidding, just give us a slight nod.

Well, one of the biggest fails in storytelling with data is the use of charts haphazardly. Different charts come with different uses. So your choice of data is influenced by multiple factors, such as the target audience type, nature of the data, and most importantly, the main goal.

#2: Context

Data storytelling needs context. Yes, it requires an understanding of the circumstances that surround each metric (variable). These circumstances (usually in the form of related data sets or events) shed light on information that would otherwise be nothing more than rows of numbers in a spreadsheet.

Essentially, context turns facts into actionable information and – in the end – decisions that have a positive impact on your business or company.

Simply put, the context of your data environment is the situation that created the data.

Let’s say you’re in the education sector. If you’re drawing enrollment data from multiple universities, each campus is its own data environment. If one university increases funding for scholarships while others don’t, that school might see increased student enrollment and retention.

When comparing that particular school with others, it’s important to take those environmental factors into consideration to gain a better understanding of your data and its implications.

So creating contextual labels provides guidance for your audience.

Creating context, therefore, is your responsibility, as a data storyteller. There are many methods to create context (labeling, chart choice, color, etc.). Remember, a line graph and a scatter chart can hold the same data but communicate different ideas.

The key is to understand what you need to communicate and then find the right visual elements to convey it.

Ask these questions: what is the message, and what base information does my audience need to understand that message? If, for example, you need your audience to understand why website traffic suddenly increased, consider a month-over-month graph and an area chart to help them understand. By illuminating different angles of the same information, you give your data context and – most importantly – help your audience see the context.

#3: Audiences

We’re sure you get motivated to tell your story more and more if people are listening. Yes, the listening factor matters a lot to the progress of any story.

Just imagine trying to communicate a story to people who aren’t paying attention.

It hurts, right?

In data storytelling, you can refocus your audience’s attention to particular insights with strategic use of colors and the size of the chart.

Take a look at the screenshot below: Can you spot the two-digit number repeating in the cluster of numbers shown below?

Sankey Chart Excel

Now, answer the question above using the screenshot below. Which two digit repeating numbers are there in our data?

Sankey Chart Excel

Of course, it’s easier to spot the answers. And this is because of strategic highlighting of the details we want you to see. Similarly, you should deploy this strategy of highlighting the insights you want your listeners to take home when storytelling with data.

Rather than let your audience do all the work, make the findings easier to cherry-pick with strategic use of colors.

And this brings us to the other crucial element that can make or break your data story.

#4: The Key Takeaway

The key takeaway is the theme of your presentation. Essentially, this is the part that answers the ‘So what?’ question.

For instance, you’ve just discovered that sales in March and April have declined. What would be the key takeaway for the scenario above?

“In March and April, our sales declined 25%, thereby erasing all the gains we made in the third quarter because:

  • An increase in the number of product returns
  • Refunds

We should investigate further into the product development process to know the cause of the money-draining problem”.

For you to create a compelling big idea, you’ve got to know your presentation very well. And I mean inside-out. The section can boil down into a sentence or a paragraph.

And this brings us to the critical part of your data story: the action you want your audience to take.

#5: Call for Action

Insights have little value if you don’t recommend action, such as whether to invest or divest.

Providing actionable information is, after all, the goal of good data visualization and storytelling. And it’s thinking through the layers and making sure there’s continuity between where your story starts and its ending.

After doing all this, how do you make your story compelling?

This other section provides you with the fundamental building blocks of a story.

So how can you tell a story with your data?

Use the steps below to get started.

i Pick a Narrative for your Data

The first step to telling a good data story is to uncover a story worth telling. And you can start by asking a question or forming a hypothesis, then compiling and digging into relevant data to find answers.

As you consider your data story, ask:

  • What are you trying to explain? 
  • What are your goals? 

There are several ways to approach data to uncover a story—and the story you set out to tell may not end up being the story you find. As you analyze your data, consider using the following approaches to help you identify a theme and develop a structure for your story:

ii. Identify Trends and Relationships in your Data

What connections do you see between data? And are there interesting or surprising correlations? 

These relationships can provide a compelling foundation for a story.

Let’s talk about trends.

For starters, trends indicate the direction of change.

It can go either upwards or downwards. For example, is there growth in a particular product or service your business offers? Or maybe you want to know your website traffic patterns over time—you may discover that certain days or times tend to be higher or lower volume.

Identifying new or evolving trends in your data is crucial.

iii- Look for Outliers

Outliers are one-off occurrences you may spot in your data. And data that doesn’t fit in with the rest of your data settings can be just as valuable for you. Look for outliers and ask questions. Besides, pay attention to any data that is counterintuitive or surprises you.

  • Why is the data behaving that way?
  • And what is the cause?
  • Are there any results that you didn’t expect? 
  • What might be the cause for those results?

iv-Mind your Audience

Always be aware of your audience when developing and sharing your data narratives. And if the story you want to tell isn’t relevant or interesting to your intended audience, it won’t have the impact you want.

As you build your data narrative, ask yourself:

  • Who is my audience?
  • Is this story relevant to my audience? Does it solve a problem they care about or provide needed insight?

Your audience’s age, demographics, job, and subject matter expertise influence how they understand and respond to your stories. Besides, it should inform how you tell your narrative.

So if you’re speaking to a room full of engineers, you may want to provide more technical details and dig into the data sets more thoroughly as you tell a story. However, an audience of executives will likely be looking for simplified data with clear insights.

Develop a habit of customizing your story and approaching it from different angles depending on your audience.

v-Use Visuals to Complement your Data Story

Lastly, a good data story needs visuals. Charts, such as Sankey Charts for Excel are a powerful way to engage your audience and improve retention—especially when communicating with non-technical audiences.

Visualizing your data story enhances understanding at every level by simplifying the information, highlighting the most important data, and most importantly, communicating critical insights quickly.

There are many ways to visualize your data, including:

  • Flowcharts
  • Bar graphs
  • Infographics
  • Pie charts
  • Scatterplots
  • Sankey diagrams

So how can you tell a data story with Sankey?

Data Storytelling with Sankey Charts

This section is full of golden tips and strategies that can take your data storytelling skills to the next level. Yes, the level where you move audiences without struggle or breaking a sweat.

So why is data storytelling important?

Data without a story lacks impact for two reasons, namely:

The data seldom comes distilled. And this means you don’t necessarily need more data to solve your problems or uncover opportunities. But you do need to identify and communicate value from the data you already have.

Secondly, data on its own cannot support your key takeaway. And this makes it difficult for our audience to grasp the actionable “news” it brings quickly.

  • Stories Attract and Maintain Audiences

We live in a world characterized by information overload, ads, and trend news. So it takes strategic use of emotional triggers, such as captivating narratives, to capture their full attention of the target audience.

So if you have numbers and want to explain their changes to any form of the audience (including engineers): use stories. And you’ll find your audience taking action you desire at the end of it all.

  • Numbers Without Stories are Boring.

Like we said earlier, numbers without stories are pretty much noise. So if you want your audience to tune their ears to you, you need to arouse their emotions. Stories have been tested and proven to do so.

Use stories to transform your data into actionable insights to empower data-driven decision-making in your organization.

So let’s agree that numbers without captivating narratives are pretty dry and less attractive to audiences. And this brings us to the other crucial benefit.

  • Stories Communicate Insights with Unmatched Clarity.

One of the core ingredients of a compelling story is simplicity in details. You might have stumbled upon a fascinating insight in your data that either communicates opportunity or impending risks.

But your problem is to share these insights with the decision-makers for action-taking. Use data narrative for a change. There’s no doubt that stories can lead your audiences in the direction you want.

This implies that if you use this visualization strategically to support your data story, you’ll move audiences in the direction you want. As Aristotle put it thousands of years ago, the building blocks of a persuasive narrative are logos (appeal to logic), ethos (appeal to emotions), and pathos (personality). Charts, which transform abstract numbers into insightful diagrams that appeal to the logic part of our brains.

For you to nail your data story, you have to get the chart part right.

You see, the human brain processes visual content over 60,000 times faster than texts and numbers. And this creates a strong case for incorporating relevant visuals into your data story.

Storytelling with data can be intimidating, especially if you’re not an expert in data visualization. To create a compelling data story, you need a strategy, a plan, a thesis statement, and most importantly, an easy-to-use visualization tool.

In this blog post, we’ve rounded up thought-provoking tips, how-to strategies, and other ingredients to help you craft compelling data stories using Sankey Chart for Excel.

These tips are tested and proven.

We use them to create compelling and actionable narratives for our clients, presentations, and meetings. And every time we use them, we get an overwhelming response.

We hope you’ll gain immense value from the blog.

FAQs:

  • How do I create a Sankey Chart in Excel?

Excel spreadsheet does NOT have Sankey templates. To create a Sankey chart in Excel, start by installing an external ChartExpo Add-in. And then, browse to find the Sankey chart. It’s the first chart in ChartExpo’s ultra-friendly user interface. Use this chart to visualize flows and processes in business settings.

  • How can you create a Sankey Chart in Excel?

Now it’s possible to create a Sankey chart using ChartExpo Add-in for Excel. No matter how complex your data is, you can trust Sankey to get the job done.

ChartExpo provides you with unlimited freedom to customize your charts to highlight key insights supporting your data story.

  • Can you make a Sankey Chart in Google Sheets?

Yes. You can achieve this by downloading and installing ChartExpo Add-on in your Google Sheets. And this is because Google Sheets lacks chart templates for Sankey. This version of ChartExpo (Google Sheets Add-on) is the same as the one for Excel with regard to the user interface. You can also refer to our guide on Sankey Diagram Google Sheets to create Sankey Chart.

  • What is the use of the Sankey diagram?

If your data represents some processes, transfer flows, and relationships: then Sankey is the best option to use for your data story. You can use this chart for visualizing the following classes of data:

  • Energy management
  • Supply chain
  • Revenue flow
  • Visits to websites (funnels in digital marketing) etc.
  • Survey analysis
  • How do you read a Sankey Chart in Excel?

First, you need to identify the Sankey categories. These categories can be read from either of the sides: left to right or right to left.

Typically, we read everything including books and charts from the left side. We suggest you read charts including Sankey from the left.

  • Why is it called a Sankey diagram?

Sankey diagram was named after Irish captain Captain Matthew Henry who first used this diagram in 1898 to visualize the energy efficiency and losses of a steam engine. Initially, these charts were confined to engineering fields. But now you can use them to visualize various aspects of the business.

Wrap Up:

Sankey Charts for Excel is among the best charts you can use to make your data narrative irresistible to your audiences. This chart is amazingly easy to read and interpret. You can bet on it to highlight the key insights supporting the thesis statement of your data story. You can draw this chart with very easy steps by using ChartExpo library in Excel.

 

IDmitry

Пользователь

Сообщений: 51
Регистрация: 20.11.2015

Здравствуйте, уважаемые знатоки.

Просветите пожалуйста, возможно ли с помощью Excel построить Санкей (Sankey) диаграмму финансовых потоков компании, в том числе между дочерними компаниями (Б, В). Важный момент — дочерние компании могут платить любой другой дочерней компании и получать от неё платежи.

Возможно есть какие либо другие инструменты позволяющие такое построение на данных Excel.
Google Charts к сожалению не позволяют строить таких диаграмм с «пересекающимися» потоками.

Очень самодельный рисунок примера того что строю во вложении.

Изменено: IDmitry02.09.2016 14:45:20

 

Equio

Пользователь

Сообщений: 274
Регистрация: 05.05.2016

В Excel — вряд ли (на данный момент). Вот тут  

http://www.sankey-diagrams.com/sankey-diagram-software/

    попробуйте покликать по ссылкам, может быть найдёте что-то подходящее.

 
 

IDmitry

Пользователь

Сообщений: 51
Регистрация: 20.11.2015

Equio

,   Максим, спасибо что отозвались.

http://www.sankey-diagrams.com/

—  кликал раньше — пока безрезультатно. Вопрос именно в том что возможно обратное движение потоков.

https://app.powerbi.com/

— именно Санкей диаграмма похоже не решает вопроса — попробую отсюда же применить Force-Directed Graph

 

IDmitry, сложно сказать, не видя ваших данных. Я такими диаграммами пользовался 1 раз в жизни, уже деталей не помню

 

IDmitry

Пользователь

Сообщений: 51
Регистрация: 20.11.2015

Пока  самое лучшее что нашёл:

 

IDmitry

Пользователь

Сообщений: 51
Регистрация: 20.11.2015

 

IDmitry

Пользователь

Сообщений: 51
Регистрация: 20.11.2015

#8

05.09.2016 15:26:51

Цитата
Максим Зеленский написал:
IDmitry , сложно сказать, не видя ваших данных. Я такими диаграммами пользовался 1 раз в жизни, уже деталей не помню

Пример данных о финпотоках группы компаний во вложении.

Прикрепленные файлы

  • СанкейПример.xlsx (9.23 КБ)

 

e_artem

Пользователь

Сообщений: 154
Регистрация: 07.05.2015

Пример данного вида диаграммы… Для использования «дотюнингуйте под себя»

Прикрепленные файлы

  • MF.xlsb (29.29 КБ)

Изменено: e_artem05.09.2016 16:10:49

 

IDmitry

Пользователь

Сообщений: 51
Регистрация: 20.11.2015

#10

05.09.2016 16:23:26

Цитата
e_artem написал:
Пример данного вида диаграммы… Для использования «дотюнингуйте под себя»

Данные вижу, а диаграмму где можно увидеть?

 

e_artem

Пользователь

Сообщений: 154
Регистрация: 07.05.2015

либо макрос вручную по F5 либо иконка на панели быстрого доступа  

 

IDmitry

Пользователь

Сообщений: 51
Регистрация: 20.11.2015

#12

05.09.2016 16:54:20

Заполнил файлик другими Контрагентами —  всё равно  тянет Страны (
Такой Макрос не осилю — я по совсем простым. (

e_artem

— Спасибо.

Diagramming can get tough when it comes to Sankey charts, especially because of the fact that it doesn’t come with standard flowchart or tree diagram templates. But, with special add ins like Power User, the process does become a lot easier and more streamlined that what you could even think of.

To be honest, creating a Sankey diagram with Power User on MS Excel takes you about 5-10 minutes, even with all the customizations. It is the data entry part that takes you the maximum time. So, if you have been wondering how to draw a Sankey diagram in Excel, follow through the steps that we have mentioned below.

Before we shed some light on the step by step breakdown of how to draw Sankey charts in Excel, we would like to give a brief description of what Sankey charts actually are.

The Sankey charts or diagrams are a form of flow diagram which helps in representing the flow rate, ensuring that the width of the diagram is proportional to the flow rate as well.

  • Also check: Sankey Diagram in Tableau Tutorial here.

This helps in highlighting the primary energy flow involved in any process, be it with the energy or even with the money involved in a process.

Best Charts, Graphs, and Diagram Tools

  1. 10 Best Online Chart Maker of 2023
  2. 10 Best Microsoft Visio Alternatives 2023
  3. 10 Best Org Chart Maker of 2023
  4. 10 Best UML Diagram Tools 2023
  5. 10 Best Entity Relationship Diagram (ERD) Tools 2023

So, how can you draw the Sankey Chart on MS Excel using Power User? Let us take a look at the steps, shall we?

Step 1: Installing Power User

Before we start creating the Sankey diagram, it is necessary that one installs the Power User first.

For this, follow through the following steps.

  1. Go to https://www.powerusersoftwares.com/ and from there click on the “Free Download” option on the top.
  2. Once the download is complete, click on the downloaded file and install it.
  3. To add it in MS Excel, click on the “File” option and then click on the “Excel Options” on the bottom.
  4. From there, go to “Add Ins” and enable the Power User option.
  5. Once that is enabled, you will be able to see it on the Toolbar of MS Excel.

Step 2: Drawing the Sankey Chart

Step 1 - Sankey Diagram in Excel

Step 2 - Sankey Diagram in Excel

Once you have installed the Power User, the next steps are where you follow through to create the Sankey chart. Let us take a look.

  1. Start by opening your MS Excel sheet and enter the data that you want to be transformed into a chart.
  2. On the top, on the tool bar, you will find the “Power User” tab. Click on that and you will find the Create Sankey Chart Option.
  3. Select the cells with the input data and then click on “OK” to proceed creating the chart.
  4. The moment you click on “OK”, the Power User add in creates the Sankey chart automatically for you as shown below.
  5. Once the chart has been created, you can open the customization options on the right and change the color scheme, the titles and the rest of the prospects that you need to be changed in accordance to your needs.
  6. Following that, you can save the changes and finally save the Excel sheet with the final Sankey chart prepared.

best diagram maker

Often times, the installation process under the Power User can be a bit difficult and can show errors. For any such issues and discrepancies that you are facing, make sure that you go through the Power User FAQs to get a better idea of things.

Home > Microsoft Excel > How to Make a Sankey Diagram Excel Dashboard? A Step-by-Step Guide

This tutorial on how to make a Sankey diagram Excel dashboard is suitable for all Excel versions including Office 365. 

Sankey diagrams are powerful data visualization tools that help you visualize the flow of resources from the root source to the destination. 

Let’s say, for example, you want to find out how a country’s natural resources are utilised. You can use a Sankey diagram to find out where these resources are coming from and connect to where they are being used.  

A Sankey Diagram Excel Dashboard in action
A Sankey Diagram Excel Dashboard in action

Unfortunately, unlike Power BI, there is no built-in option in Excel that allows you to insert a Sankey diagram directly into a spreadsheet. 

But, there is still a way to make a Sankey diagram Excel dashboard using nothing more than just bar charts.

In this tutorial, I’ll walk you through how to do this in a step-by-step manner.

Table Of Contents

  1. How to Make a Sankey Diagram Excel Dashboard?
    • Step 1: Get Your Data Ready for the Sankey Chart
    • Step 2: Plot Individual Sankey Lines
    • Step 3: Assemble All the Individual Sankey Lines
  2. FAQs
    • How do Sankey diagrams work?
    • Why is it called a Sankey Diagram?
  3. Closing Thoughts

I suggest you download the sample Excel sheet and use it to follow along with this guide.

Related:

Easily Make a Bullet Chart in Excel—2 Examples

Creating a Dynamic Pivot Chart Title Based on Slicer(6 Easy Steps)

How to Make a Line Graph in Excel? 4 Best Line Graph Examples

How to Make a Sankey Diagram Excel Dashboard?

Creating a Sankey diagram in Excel is very easy if you break the process into these three steps:

  1. Generate data for all individual Sankey lines.
  2. Plot each individual Sankey line seperately.
  3. Assemble all individual Sankey lines together into a Sankey diagram.

    I’ll show you how each one of these steps work in greater detail.

Step 1: Get Your Data Ready for the Sankey Chart

  • Get your data source ready in the form of a two-dimensional table like shown below:
Source Data for the Sankey Diagram in Excel
Source Data for the Sankey Diagram in Excel

Here, the rows represent the sources and the columns represent their destinations. Now, rename the table to ‘Data’ in the Table Design Tab.

  • Set a specific named range called ‘Blank‘ and assign a suitable value. To do this go to the Formula tab and click on the Define Name option. This is going to be the width of the blank space inside the Sankey diagram. 
Set the width of the blank space in your Sankey Diagram and name it 'Blank' as a named range
Set the width of the blank space in your Sankey Diagram and name it ‘Blank’ as a named range
  • Now, in a separate table, list all combinations of flows in order, along with their corresponding values. You can use the following formula to retrieve the source values correctly:

    =IF(LEFT([@From],5)=”Blank”,Blank,INDEX(Data,MATCH([@From],Data[From/To],0),MATCH([@To],Data[#Headers],0)))

Rename the table to ‘Lines’ in the Table Design tab. Every row in this table represents a Sankey line.

  • Now, In the same table, for every Sankey line, you need to calculate three things: The space above the Sankey line, the width of the Sankey line and the space below the Sankey line. 

This means that you have to calculate three sets of data points for each row as shown below: 

Calculate the Sankey Line parameters for each row in the 'Lines'  table
Calculate the Sankey Line parameters for each row in the ‘Lines’ table

Use the following formulas to calculate the thickness of each Sankey line i.e each row in the ‘Lines’ table. Entering these formulas in the first row of the table is enough and fills the entire table with the relevant data.

Series 1 (Space Above the Sankey Line)

For AStart use: =SUM(Lines[[#Headers],[Value]]:[@Value])-[@Value]

For AMid1 use: =[@Astart]

For AMid2 use: =[@AEnd]

For AEnd use: =SUM([Value])-SUMIFS([Value],[End Position],”>=”&[@[End Position]])

Series 2 (Width of the Sankey Line)

For Value Start, Value Mid 1, Value Mid 2, Value End, use: =[@Value]

Series 3 (Space Below the Sankey Line)

For BStart use: =SUM([Value])-[@Astart]-[@Vstart]

For BMid1 use: =SUM([Value])-[@AMid1]-[@VMid1]

For BMid2 use: =SUM([Value])-[@AMid2]-[@VMid2]

Fir BEnd use: =SUM([Value])-[@deb-ashbyAEnd]-[@VEnd]

  • Finally, you need to set up two data tables for the Sankey pillars.
Create Tables for both the Source and Destination Pillars
Create Tables for both the Source and Destination Pillars

For Source pillars use =SUMIFS(Lines[Value],Lines[From],[@From]) in the value column. 

For Destination pillars use =SUMIFS(Lines[Value],Lines[To],[@To]) in the value column.

Also, don’t forget to create a separate named range for Spacing, which is going to be used as the horizontal axis. 

Create a sample Spacing Range for the X-Axis of the Sankey diagram
Create a sample Spacing Range for the X-Axis of the Sankey diagram

Also Read:

Bar Graph in Excel — All 4 Types Explained Easily (Excel Sheet Included)

How to Make a Scatter Plot in Excel? 4 Easy Steps

How to Add Error Bars in Excel? 7 Best Methods

Step 2: Plot Individual Sankey Lines

  1. Now, all you have to do is plot a 100% Stacked area chart (Insert tab >Recommended Charts > All Charts > Area) with 3 data series in the Y-axis vs the Spacing range in the X-axis. Series 1 should contain the range AStart, AMid1, AMid2, and AEnd of a particular row.

    Similarly, Series 2 should contain the range VStart, VMid1, VMid2, and VEnd of a particular row. In the same fashion, Series 3 should contain the range BStart, BMid1, BMid2, and BEnd.  

Use the 100% Stacked Area chart  for Sankey Diagram Excel
Use the 100% Stacked Area chart to create individual lines of the Sankey Diagram Excel Dashboard
Plot each individual Sankey line using Series1, Series2 & Series3 inside a 100% Stacked Area Chart
Plot each individual Sankey line using Series1, Series2 & Series3 inside a 100% Stacked Area Chart
  1. Next, double-click on the Y-axis and plot it in reverse order. 
Plot the Y-xis in reverse order using the Format Axis Pane
Plot the Y-xis in reverse order using the Format Axis Pane
  1. Now, double-click on each plot area to open the Format Data Series pane and set the transparency for the upper and lower area to 100%. Similarly, set the transparency of the middle area to 50%. 
  1. Switch off the gridlines of the plot area, set the fill to no-fill for the plot area, and remove the chart’s borders, axes, legends etc.
Switch off Gridlines using Chart Elements
Switch off Gridlines using Chart Elements
Delete All Axes and legends
Delete All Axes and legends
No Fill and No Border
Double-Click anywhere on the empty space inside the chart and set the Fill to No Fill and Border to No Line in the Format Chart Area Options
  1. Congratulations, you have successfully created a single Sankey line. Follow steps 1-4 and create Sankey lines for all rows of data in the lines table. 
Create similar Sankey Lines for all the rows in the 'Lines' table using steps 1 to 4
Create similar Sankey Lines for all the rows in the ‘Lines’ table using steps 1 to 4

Step 3: Assemble All the Individual Sankey Lines

  1. Now that you have all the individual Sankey lines ready, all you have to do is assemble all of them together into a single Sankey diagram Excel dashboard.
Assemble all individual Sankey lines together following the End Position order in the Table 'Lines'
Assemble all individual Sankey lines together following the End Position order in the Table ‘Lines’
  1. Next, create two separate Sankey pillar charts using a 100% stacked column chart using the Sankey pillar tables as shown below and format them as shown below.
Create a 100% Stacked Column Chart using the SPillar Table data
Create a 100% Stacked Column Chart using the SPillar Table data
Delete all Axes, legends & Titles from the Chart
Delete all Axes, legends & Titles from the Chart
Switch off the Gridlines and Set Fill to No Fill, Border to No Border in the Format Plot Area pane
Switch off the Gridlines and Set Fill to No Fill, Border to No Border in the Format Plot Area pane
Set the Fill Colour to No Fill for all Blank 1, Blank 2 and Blank 3 ranges in the Stacked Column
Set the Fill Colour to No Fill for all Blank 1, Blank 2 and Blank 3 ranges in the Stacked Column

Repeat the same formatting process with the 100% Stacked Column chart created with the EPillars table.

  1. Set suitable Fill Colours to the Sankey pillars and drag them near the created Sankey diagram

Assemble the Pillars with the Sankey Lines to complete the Sankey Diagram Excel Dashboard

Assemble the Pillars with the Sankey Lines to complete the Sankey Diagram Excel Dashboard

Congratulations, you have successfully created your own Sankey Diagram Excel dashboard. This dashboard is dynamic i.e any change in the source data will immediately reflect in the Sankey diagram.

Suggested Reads:

How to Add a Watermark in Excel? 2 Easy Methods

How to Remove Hyperlinks in Excel? 3 Easy Methods

How to Use the Format Painter Excel Feature? — 3 Bonus Tips

FAQs

How do Sankey diagrams work?

Sankey diagrams visually represent the flow of resources taking place in a process or phenomenon. The thicker lines signify greater volume of flow and the thinner lines represent the lower volume flow of resources. In a nutshell, it helps you intuitively see complex processes visually.

Why is it called a Sankey Diagram?

Sankey diagrams are named after the Irish engineer Matthew Sankey who used them first to visualise the energy efficiency of a steam engine.

Closing Thoughts

In this tutorial, we saw how to create a custom Sankey diagram Excel dashboard using three simple steps. I recommend you try this one out using the sample Excel sheet to get a better understanding. If you have any questions or doubts about this, please let us know in the comments section. 

Need more high-quality Excel guides? Check out our free Excel resources centre.

Simon Sez IT has been teaching Excel for over ten years. For a low, monthly fee you can get access to 100+ IT training courses by seasoned professionals. Click here for advanced Excel courses with in-depth training modules.

Adam Lacey

Adam Lacey is an Excel enthusiast and online learning expert. He combines these two passions at Simon Sez IT where he wears a number of different hats.When Adam isn’t fretting about site traffic or Pivot Tables, you’ll find him on the tennis court or in the kitchen cooking up a storm.

Понравилась статья? Поделить с друзьями:
  • Диаграмма стиффа в excel
  • Диаграмма процент от целого в excel
  • Диаграмма статической остойчивости excel
  • Диаграмма сравнений торнадо в excel
  • Диаграмма полов в excel