How can I get Excel to copy every nth cell from one sheet onto another? -
My data begins in C9 and I want to give context to every 18th line. For example (referred sheet is named Summer):
= + Summer! C9
= + Summer! C27
= + Summer! C 45
How can I get excel to identify this pattern so I have to type it?
Thank you!
No, but you can do something like this:
= Indirect ("Summer! C" & (Line) * Basically use the current row as a multiplier, and formula form. Edit: Indirect is a function that lets you create a cell Allows you to use the reference that you made with the string. So we are actually trying to organize Are:
= indirect ("summer! C9")
which evaluates to your origin
= Summer! C9
So whatever we have to do is calculate the number 9. To find the correct mathematical calculation of your desired number, this simple version Test it out:
= (line () - n + 1) * 18) -9)
This should give you a number of line numbers Along with n change the formula where you ago So if your first formula was actually on line 25, you would use instead:
= (line () - 25 + 1) * 18) -9)
Once you are certain number is correct, then
= indirect ("summer! C "& / Pre> Part and you should be good to note. Note I also assume that each form is in a lower line than the previous one. If it is not, then make other adjustments It all is just mathematics.
Comments
Post a Comment