Google Sheets – How to AutoFill Dates but Skip Weekends

google sheets

I need to auto fill the some dates which is easy and I know how to do. However, I do not know how to do this skipping the weekends. I want it to auto fill skipping weekends and jumping to Monday.

Best Answer

This can be done with a conditional statement involving WEEKDAY

Let's say you put 5/7/2015 in A2, and the conditional formula

=IF(WEEKDAY(A2)=6,A2+3,A2+1) 

in A3. (Weekday=6 means Friday, after which two days are skipped). Dragging this down you'll see

5/7/2015
5/8/2015
5/11/2015
5/12/2015
5/13/2015
5/14/2015
5/15/2015
5/18/2015

and so on.