How to Create a Step Chart in Excel
Last Updated :
25 Sep, 2023
A step chart is used to represent data that changes irregularly between time intervals. Now, Excel doesn't have a feature to create a Step Chart like the one shown below but we can create one by making some changes in our data.
What is a Step Chart in Excel
A Step chart is the same as a Line Chart. The step Chart does not use the shortest path to connect two data points. It instead uses vertical and horizontal lines to connect the data points to form a step-like progression. The vertical lines in the graph show the changes in the data and their magnitude.

Line Chart Vs. Step Chart
Both the line and step chart may appear similar at first sight, but there are differences between both of them.
- A line Chart helps us to see the trend by connecting the data points. The primary motive of such a chart is the trend and not the Exact time of change.
- Whereas, a step chart helps highlight the exact time of change in the data, along with the trend. You can easily spot the time period where there was no change and compare the magnitude of change in each instance.
.png)
How to Create a Step Chart in Excel
Step 1: Create your Data Table
In this article, we'll make a Step Chart based on the Bitcoin Prices over a few weeks. So, let us create our data table first.

Note: In this article we are using MS Excel 2010, but above steps are valid for all the latest versions.
Step 2: Re-arrangement of data
Now, once your data is ready, make two more empty columns with the same titles adjacent to the ones you just made.

Now, select all the cells from A2 till the end of your column (in this case A18) and press Ctrl + C, to copy it. Then, paste it in the new DATE column. Similarly, copy from the FIRST element of the BTC PRICE column to the second last element and paste it into the new BTC PRICE column. The final result will look like this.

Now, copy all the elements from both the old columns and paste them right under the new columns as shown below.
Part 1
Part 2Step 3: Conversion to Step Chart
Select both the new columns entirely and go to Insert. Locate the Line Chart under the Charts section and click on it.

Now, wait for the chart to show up, and you'll be all set!

Advantages of using a Step Chart in Excel
A step chart in Excel is useful for data that changes at irregular intervals of time. For example:
- Interest rates vs. time
- Tax Rates vs. Income
- Distance covered vs. time taken
How to Create a Step Chart Without Dates
Making a step chart without dates is simple. A step chart, also called a step plot or step line chart, helps display data that changes in distinct steps, not continuously. Here's how to create one without dates
In this situation, Excel separates the months into two sections: first, Jan to June and Second Jan to June
So, it's clear that making a step chart with text labels instead of dates can be tricky. But don't worry; there's a solution. When you're dealing with months or years, simply convert them into a date format.
For example, instead of using "Jan," "Feb," "Mar," and so on, use "01-Jan-2023," "02-Feb-2023" "03-Mar-2023," and then extract the month information from these dates using custom formatting, like this:

Now Convert the Chart into Step Chart
How to edit a step chart in Excel after creating it?
Follow the below step to edit a step chart in Excel:
Step 1: Right-click on Various chart elements, such as data points, axis labels, or the chart area, and choose the "Format" or "Edit" option.
This will allow you to customize colors, line styles, data labels, and other aspects of the Chart.
How to create a Step Chart with date-based data in Excel?
To create a Step Chart with a date based you simply, you just need to ensure that your data is correctly formatted in the X-axis, and Excel will handle the rest of the Chart creation process.
Similar Reads
Non-linear Components In electrical circuits, Non-linear Components are electronic devices that need an external power source to operate actively. Non-Linear Components are those that are changed with respect to the voltage and current. Elements that do not follow ohm's law are called Non-linear Components. Non-linear Co
11 min read
Spring Boot Tutorial Spring Boot is a Java framework that makes it easier to create and run Java applications. It simplifies the configuration and setup process, allowing developers to focus more on writing code for their applications. This Spring Boot Tutorial is a comprehensive guide that covers both basic and advance
10 min read
Class Diagram | Unified Modeling Language (UML) A UML class diagram is a visual tool that represents the structure of a system by showing its classes, attributes, methods, and the relationships between them. It helps everyone involved in a projectâlike developers and designersâunderstand how the system is organized and how its components interact
12 min read
Steady State Response In this article, we are going to discuss the steady-state response. We will see what is steady state response in Time domain analysis. We will then discuss some of the standard test signals used in finding the response of a response. We also discuss the first-order response for different signals. We
9 min read
Backpropagation in Neural Network Back Propagation is also known as "Backward Propagation of Errors" is a method used to train neural network . Its goal is to reduce the difference between the modelâs predicted output and the actual output by adjusting the weights and biases in the network.It works iteratively to adjust weights and
9 min read
Polymorphism in Java Polymorphism in Java is one of the core concepts in object-oriented programming (OOP) that allows objects to behave differently based on their specific class type. The word polymorphism means having many forms, and it comes from the Greek words poly (many) and morph (forms), this means one entity ca
7 min read
3-Phase Inverter An inverter is a fundamental electrical device designed primarily for the conversion of direct current into alternating current . This versatile device , also known as a variable frequency drive , plays a vital role in a wide range of applications , including variable frequency drives and high power
13 min read
What is Vacuum Circuit Breaker? A vacuum circuit breaker is a type of breaker that utilizes a vacuum as the medium to extinguish electrical arcs. Within this circuit breaker, there is a vacuum interrupter that houses the stationary and mobile contacts in a permanently sealed enclosure. When the contacts are separated in a high vac
13 min read
AVL Tree Data Structure An AVL tree defined as a self-balancing Binary Search Tree (BST) where the difference between heights of left and right subtrees for any node cannot be more than one. Example of an AVL Tree:The balance factors for different nodes are : 12 :1, 8:1, 18:1, 5:1, 11:0, 17:0 and 4:0. Since all differences
4 min read
CTE in SQL In SQL, a Common Table Expression (CTE) is an essential tool for simplifying complex queries and making them more readable. By defining temporary result sets that can be referenced multiple times, a CTE in SQL allows developers to break down complicated logic into manageable parts. CTEs help with hi
6 min read