Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Excluding Some Data from a Chart.
Written by Allen Wyatt (last updated April 8, 2023)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021
Pam keeps a month's worth of data in a table and created a chart based on that data. The data was collected from information generated on her company's shop floor. The data includes weekends, but Pam doesn't want the weekend data included in the chart. She knows that she could hide the rows and they would be excluded from the chart, but she still needs the hidden rows to be displayed in the table. In other words, she wants them displayed in the data table, but not in the chart.
There are a couple of ways you could approach this problem. One is to simply make a copy of your data (maybe copy the whole worksheet) and then delete the rows that contain weekend data. You would still have your master data for whatever purposes you need, but you could base your chart on the modified copy of that data.
The drawback to this, of course, is that it creates two sets of data that may need to be updated or kept in sync in some way. It may be better to base your chart on a non-contiguous data range. Assume, for a moment, that your data was in A1:B15, and that there were weekends in rows 7, 8, 14, and 15. You could, within the chart, set the data range for the source data to this:
=Sheet1!$A$1:$B$6,Sheet1!$A$9:$B$13
You could also create a named range that refers to the non-contiguous ranges you want included in the chart. You could then use the named range in your chart, as a reference to the source data.
Finally, if you don't mind adding another column to your data, you could use the new column for your chart source. Assume, for a moment, that your readings are in column A and the dates of those readings are in column B. In each cell of column C you could place the following formula:
=IF(WEEKDAY(B1,2)>5,NA(),A1)
You then end up with a series of readings for all weekdays; the weekends show #N/A for the reading. You can base your chart on this data and Excel will ignore the #N/A values. You can even hide column C so it does not distract from your source data.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (7846) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021. You can find a version of this tip for the older menu interface of Excel here: Excluding Some Data from a Chart.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!
Most charts you create in Excel are based on information stored in a worksheet. You can also create charts based on ...
Discover MoreNeed a chart that uses two lines for axis labels? It's easy to do if you know how to set up your data in the worksheet, ...
Discover MoreWorking with elapsed times can be a bit tricky in some situations. One such situation involves the displaying of elapsed ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2023-04-10 22:29:15
Tomek
Instead of copying the sheet, you could create the second sheet that just links to the original data. The easiest way to do this is to add a new sheet, then copy all original data, then on the new sheet Paste-Special-Paste Link. That way you will not have two sets of data to manage. The second sheet will automatically sync with the original data.
Using the extra column gives you most flexibility though, and allows for automatic identification of weekends in any month.
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments