Calc: Is it possible to auto fill a stepped cell reference ? I've been trying without result
What i want is in a cell (or two ) a cell reference, to highlight that cell and drag down
So the first few cells might be
A1
A8
A16
Your first interval is seven and your second one eight. Will the next be nine, or what?
highlighting and dropping would produce
A1
A8
A16
A24
A32
A40
etc
That's supposing that Calc can read your mind and guess that the subsequent gaps should all be eight - despite your first pattern example gap being seven.
I've got a few columns needing the same stepped cell reference and this could save me some time
Slight edit to my original post I missed out the =
Er, I wonder where that should have been in your message!
The simplest way would be to construct the formula yourself. Let's suppose you actually want =A8, =A16, =A24, and so on. You could do this using
="A"&ROW()*8
where the ROW() function returns the number of the row containing the formula itself. But that creates a text string that looks like a formula, not a formula as such. You can interpret text as a formula using the INDIRECT() function, so you need something like
=INDIRECT("A"&ROW()*8)
which you can copy or fill down the column.
If you want A1, A9, A17, and so on, you could use
=INDIRECT("A"&ROW()*8-7)
I trust this helps.
Brian Barker