Chart data except for weekend dates?

SandsB

Well-known Member
Joined
Feb 13, 2007
Messages
752
Office Version
  1. 365
Platform
  1. Windows
I have lots of files with thousands of rows of data. I make charts that go up and down because of very low numbers on weekends. Makes it hard to see what really going on over time. Is there a way to use ALL of the same data without picking out weekends so the chart only shows weekdays? Something using NETWORKDAYS maybe?
 
Hello,

You can use the FILTER function to retrieve only the days that are not weekends. For weekends = [Saturday+Sunday], the formula would be
Excel Formula:
=FILTER(your_data, WEEKDAY(your_dates, 2)<6)
With your_data the data to filter, and your_dates the corresponding dates column.

Note that you can also add an helper column with the WEEKDAY function, and use a manual filter on it.
 
Upvote 0

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top