Hey folks,
I'm having trouble figuring this out:
I have a value in Cell A1, say 3.
What I want is a list of the first three odd numbers. If A1 = 7, then the first seven odd numbers.
I'm not sure how to go about this... I thought of creating a vector twice the length
For i = 1 to cella1value*2
vector(i) = i
Next i
and then mapping the values of this vector in to a value of smaller length, maybe using the step modifier. But I'm not sure how to map the second value of a vector to the first value of another vector and so on.
Does this make sense? Is there a simpler way of doing this? All thoughts appreciated, many thanks,
AR
But I'm
Bookmarks