How to Plot Multiple Lines on an Excel Graph?
Last Updated : 14 May, 2024
Excel is a powerful data visualization and data management tool that can be used to store, analyze, and create reports on large data. It can be used to plot different kinds of graphs like line graphs, bar graphs, etc. \
The line graph is also known as a line plot or a line chart. In this graph, lines are used to connect individual data points. It displays quantitative values over a specified time interval. We can easily plot multiple lines on the same graph in Excel by simply selecting several rows (or columns) and creating a line plot.
How to Plot Multiple Lines on an Excel Graph?
Plotting Multiple Lines on an Excel Graph
1. When the data is arranged in columns
For demonstration, we will use the sales data of three products over the period of different years.

Step 1: Select the cell containing product data.

Step 2: Select "Insert" Tab from the top ribbon and select the line chart.

Output:

2. When the data is arranged in rows
For the purpose of demonstration, we will use the sales data of three products over the period of different years.

Step 1: Select the cell containing product data.

Step 2: Select the "Insert" Tab from the top ribbon and select the line chart.

Output:

Conclusion
In Summary, learning how to plot multiple lines on an Excel graph opens up a world of possibilities for visualizing your data effectively. We have learned to plot multiple lines on a Graph when the data is arranged in columns as well as in rows. As you apply these techniques, you'll enhance your ability to create clear, compelling graphs that convey valuable insights.
Similar Reads
How to Find the Slope of a Line on an Excel Graph? In this article, we will look into how to calculate the slope of a line in an Excel graph. Slope of a line basically determines two parameters : The direction of a line. The steepness of a line (rise or fall). It is generally denoted by the letter "m". The equation of a line is given by the expressi
3 min read
How to Make a Line Graph in Excel - Easy Tutorial Line graphs are a highly valuable tool in Excel, helping users analyze trends and patterns effectively over time. They are widely used for time-series analysis in Excel, allowing a clear visual representation of changes in data. In this guide, you'll learn how to create a line graph in Excel, includ
10 min read
Draw Multiple Graphs and Lines in Same Plot in R A visualization can sometimes make more sense when multiple graphs and line plots are combined into one plot. In this article, we will discuss how we can do the same in the R programming language. Method 1: Using base R Base R supports certain methods that can be used to generate the desired plot. I
3 min read
How to Create an Ogive Graph in Excel? Ogive graph, the name might scare you, but believe me this is very simple to create. The ogive graph is a cumulative frequency graph. The graph is plotted between the fixed intervals vs the frequency added up before. It is a curve plotted for cumulative frequency distribution on a graph. There are t
4 min read
How to create a plot using ggplot2 with Multiple Lines in R ? In this article, we will discuss how to create a plot using ggplot2 with multiple lines in the R programming language. Method 1: Using geom_line() function In this approach to create a ggplot with multiple lines, the user need to first install and import the ggplot2 package in the R console and then
3 min read