I want to make an dynamic array of evenly spaced values. A Max and a Min is given and stored in two cells. And another value for number of intervals.
So for example, the following is given:
Min=25
Max=100
N=3


and I need an output of a Nx1 array with the values:
25
50
75
100


So far, I've been implementing this with {=Min+{0;1;2;3}*Interval}
Where Interval = (Max-Min)/N

But problem is I need to be able to change N and have the array change to {=Min+{0;1;2;3;...;N}*Interval}.

So the question is, how do I generate an Nx1 array?