Fill series - odd days/months

FloydPalmer

New Member
Joined
Aug 30, 2016
Messages
44
Hi,

I'm following Microsoft Virtual Academy's Excel tutorial and I've come across different ways to use the fill series and I wanted to ask how you can do a fill series if you wanted to do odd days/months (so Monday, Wednesday, Friday or months Apr, June, Sept).

After writing April, June and using the arrow to drag down (the tutorial suggested Excel would pick it up automatically) it gives the multiple options but I'm still unable to get the odd months I need.

I've tried going into Fill > Series > Date > Month > Step Value (2) but no joy.

Can anyone break it down so I can do this?

Thanks
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
This formula copied down will repeat the days of the week starting with Monday:
=TEXT((MOD(ROW()-1,3)+1)*2,"ddd")

This formula copied down will repeat those months:
=CHOOSE(MOD(ROW()-1,3)+1,"Apr","Jun","Sept")


Cell Formulas
RangeFormula
A1=TEXT((MOD(ROW()-1,3)+1)*2,"ddd")
A2=TEXT((MOD(ROW()-1,3)+1)*2,"ddd")
A3=TEXT((MOD(ROW()-1,3)+1)*2,"ddd")
A4=TEXT((MOD(ROW()-1,3)+1)*2,"ddd")
A5=TEXT((MOD(ROW()-1,3)+1)*2,"ddd")
A6=TEXT((MOD(ROW()-1,3)+1)*2,"ddd")
A7=TEXT((MOD(ROW()-1,3)+1)*2,"ddd")
A8=TEXT((MOD(ROW()-1,3)+1)*2,"ddd")
A9=TEXT((MOD(ROW()-1,3)+1)*2,"ddd")
A10=TEXT((MOD(ROW()-1,3)+1)*2,"ddd")
B1=CHOOSE(MOD(ROW()-1,3)+1,"Apr","Jun","Sept")
B2=CHOOSE(MOD(ROW()-1,3)+1,"Apr","Jun","Sept")
B3=CHOOSE(MOD(ROW()-1,3)+1,"Apr","Jun","Sept")
B4=CHOOSE(MOD(ROW()-1,3)+1,"Apr","Jun","Sept")
B5=CHOOSE(MOD(ROW()-1,3)+1,"Apr","Jun","Sept")
B6=CHOOSE(MOD(ROW()-1,3)+1,"Apr","Jun","Sept")
B7=CHOOSE(MOD(ROW()-1,3)+1,"Apr","Jun","Sept")
B8=CHOOSE(MOD(ROW()-1,3)+1,"Apr","Jun","Sept")
B9=CHOOSE(MOD(ROW()-1,3)+1,"Apr","Jun","Sept")
B10=CHOOSE(MOD(ROW()-1,3)+1,"Apr","Jun","Sept")
 
Last edited:
Upvote 0

Excel 2010
ABC
1MonthsMonthsDays
2AprilAprMon Oct 01 2018
3JuneJunWed Oct 03 2018
4AugustAugFri Oct 05 2018
5OctoberOctMon Oct 08 2018
6DecemberDecWed Oct 10 2018
7FebruaryFebFri Oct 12 2018
8AprilAprMon Oct 15 2018
9
Month series
Cell Formulas
RangeFormula
C3=IF(WEEKDAY(C2,1)<6,C2+2,C2+3)


Fill down seems to work OK with Months see Columns A or B
Try the formula for Mon Wed and Fri

Hopefully this helps.
Please provide more information on what you require.

N.B. Format column C to show just Mon etc if that is what you require.
 
Last edited:
Upvote 0
Excel 2010
ABC
1MonthsMonthsDays
2AprilAprMon Oct 01 2018
3JuneJunWed Oct 03 2018
4AugustAugFri Oct 05 2018
5OctoberOctMon Oct 08 2018
6DecemberDecWed Oct 10 2018
7FebruaryFebFri Oct 12 2018
8AprilAprMon Oct 15 2018
9

<tbody>
</tbody>
Month series

Worksheet Formulas
CellFormula
C3=IF(WEEKDAY(C2,1)<6,C2+2,C2+3)

<tbody>
</tbody>

<tbody>
</tbody>



Fill down seems to work OK with Months see Columns A or B
Try the formula for Mon Wed and Fri

Hopefully this helps.
Please provide more information on what you require.

N.B. Format column C to show just Mon etc if that is what you require.

Thank you - most informative. However, and sorry I didn't make it clear, is that rather than repeat the days and months I'd want to keep the formula going so the days/months continue in that format?

Incidentally, our quarters would normally go as April, June, Sept, Dec, March
 
Last edited:
Upvote 0
How do you want the days of the week to go since there are only 7 days in a week.
Mon Wed Fri Sun Mon or do those days actually repeat Mon Wed Fri Wed

Why don't your quarters always repeat starting at the same Month? It seems like they should go March, June, Sept, Dec, Mar
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,929
Messages
6,122,314
Members
449,081
Latest member
tanurai

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