Is it possible to create a drop down list with one number as source, and calculate the other values?
I have tried it in Excel 2010, but I think there will be no significant difference in Excel 2013.
H1:H1001
.F3
.F3
.
F3
.=H1:H1001
.=INDIRECT("H1:H"&(F3+1))
.Here is a working example. Feel free to download it.
INDIRECT
function accepts a string reference to a range and returns the range itself. So if value stored in F3 were 27, the function, as used here, would return a range from H1 to H28 (thus possibilities in the drop-down list would be 0-27).