View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Sinner Sinner is offline
external usenet poster
 
Posts: 142
Default Generate list of numbers between start and end value

On Sep 18, 1:44 am, excelent
wrote:
Startvalue in A1, Endvalue in B1

Sub myFill()
[A1].AutoFill Destination:=Range("A1:A" & [B1] - [A1] + 1), Type:=xlFillSeries
End Sub

"Sinner" skrev:



Hi,


This should be simple.


I have astartvaluein one cell and endvaluein another.
I want togeneratealistbetweenthem.


Startvalue: 8597000098881
Endvalue: 8597000098890


Result:


8597000098881
8597000098882
8597000098883
8597000098884
8597000098885
8597000098886
8597000098887
8597000098888
8597000098889
8597000098890


Any idea?- Hide quoted text -


- Show quoted text -


excelent this is giving an error.