Forum Discussion

kristinapinske's avatar
kristinapinske
Copper Contributor
Jan 09, 2020

how do i autofill with dates, but have 2 lines with each date? like 02/01/2020 on the 1 & 2 lines

how do i autofill with dates, but have 2 lines with each date? like 02/01/2020 on the 1st line, 02/01/2020 on the second line, 03/01/2020 on the third line, 03/01/2020 on the fourth line....etc.

  • Patrick2788's avatar
    Patrick2788
    Silver Contributor

    kristinapinske 

    Use the fill handle.

     

    1. In a new worksheet go to A1 and enter the date 2/1/2020

    2. Right-click and drag the fill handle down as many rows as you need dates.

    3. Release the right-click and choose Series from the context menu.

    4.  The Series menu should use these choices:

    5. Click OK.

    • Mike_PeoplesMDA's avatar
      Mike_PeoplesMDA
      Copper Contributor
      That is awesome to have found out, thank you! There are many times when I need 2 or 3 copies of the same cell in a long list that has already been generated.
  • PReagan's avatar
    PReagan
    Bronze Contributor

    Hello kristinapinske,

     

    Place 02/01/2020 in cell A1. Place the following formula in cell A2 and copy down:

    =IF(MOD(ROW(),2)=0,A1,DATE(YEAR(A1),MONTH(A1)+1,DAY(A1)))

    • Merv-'s avatar
      Merv-
      Copper Contributor

      or this one...

      Place 02/01/2020 in cell A1. Place the following formula in cell A2 and copy down:
      =IF(MOD(ROW(),2)=0,A1,DATE(YEAR(A1),MONTH(A1),DAY(A1)+1))

Resources