My data starts in C9 and I want to reference every 18th row. For example (the referenced sheet is named Summer):
=+Summer!C9
=+Summer!C27
=+Summer!C45
How can I get excel to recognize this pattern so I don’t have to type it over and over?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Not pretty, but you can do something like this:
Basically use the current row as a multiplier, and construct the formula.
Edit:
Indirect is a function that allows you to use a cell reference you have constructed from a string. So we’re actually trying to contruct:
which evaluates the same as your original
So all we need to do is compute the number 9 from whatever we have handy. To find the right math to calculate the number you want, lets test this simpler version:
This should give you a number. Replace n with the row number where you first formula appears. So if your first formula was actually on row 25, you’d instead use:
Once you are sure the number is correct, then just tack on the
portion and you should be good to go. Note I’ve also assumed that each formula is in the row below the previous one. If that’s not the case, then you’d have to make other adjustments. But its all just math.