I would like to create a column of numbers based on two user input points, then calculate values using those data.

For example if user input was 1.00 (cell A6) and 2.00, the table would begin at address A26 with a value equal to input 1 then add 0.01. This would continue adding 0.01 in the next row until the value is equal to 2.00. The example below is what I have been using but it's sloppy, I have to copy the formula beyond my largest expected number. I also have another formula in column B but have the same problem, it needs to end at the same row as column A.

=CELL("contents",A6)
=A27+0.01
=A28+0.01

Any help would be greatly appreciated.