+ Reply to Thread
Results 1 to 5 of 5

How can I fill cell A1 with cell B1 Skip 70 cells and fill A71 with B2 etc....

  1. #1
    Forum Contributor
    Join Date
    04-26-2013
    Location
    Orlando
    MS-Off Ver
    Excel 2016
    Posts
    191

    How can I fill cell A1 with cell B1 Skip 70 cells and fill A71 with B2 etc....

    Hi and thank you for your help in advance. I am trying to fill cells for sake of example A1 through X with information from another set of cells B1 through X and i want to skip 70 rows after each fill in cell A1 but dont skip rows from the reference column. I hope this is a good enough explanation of what i need to do thanks.

    A1 = B1
    A71 = b2
    A141 = B3 etc...

  2. #2
    Forum Guru benishiryo's Avatar
    Join Date
    03-25-2011
    Location
    Singapore
    MS-Off Ver
    Excel 2013
    Posts
    5,147

    Re: How can I fill cell A1 with cell B1 Skip 70 cells and fill A71 with B2 etc....

    hi mikey42979, welcome to the forum. try:
    =IF(MOD(ROW(),70)=1,INDEX(B:B,INT(ROW()/70)+1),"")

    Thanks, if you have clicked on the * and added our rep.

    If you're satisfied with the answer, click Thread Tools above your first post, select "Mark your thread as Solved".

    "Contentment is not the fulfillment of what you want, but the realization of what you already have."


    Tips & Tutorials I Compiled | How to Get Quick & Good Answers

  3. #3
    Forum Contributor
    Join Date
    04-26-2013
    Location
    Orlando
    MS-Off Ver
    Excel 2016
    Posts
    191

    Re: How can I fill cell A1 with cell B1 Skip 70 cells and fill A71 with B2 etc....

    Thanks so much this is perfect you are god lol.

  4. #4
    Forum Contributor
    Join Date
    04-26-2013
    Location
    Orlando
    MS-Off Ver
    Excel 2016
    Posts
    191

    Re: How can I fill cell A1 with cell B1 Skip 70 cells and fill A71 with B2 etc....

    Im such a noob, how can i start the fill in A4 instead of A1?

  5. #5
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: How can I fill cell A1 with cell B1 Skip 70 cells and fill A71 with B2 etc....

    One way is to put A1 inside the ROW function like so

    =IF(MOD(ROW(A1),70)=1,INDEX(B:B,INT(ROW(A1)/70)+1),"")
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1