Give this a try in any starting cell, eg in A1:
=10&"."&INT((ROWS($1:1)-1)/16)&"."&MOD(ROWS($1:1)-1,16)
Copy down

Signature
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
> Hello,
> Not sure if this is the easiest way to do this but I am wanting to create
[quoted text clipped - 16 lines]
>
> Andrew.
Dave Peterson - 23 Mar 2008 13:55 GMT
Just to piggy back on Max's response.
You may want to end up with values that look like:
10.00.00
10.00.01
10.00.02
10.00.03
10.00.04
10.00.05
10.00.06
(You may find sorting your data much easier with this format.)
You could a minor modification to Max's formula to get it:
=10&"."&TEXT(INT((ROWS($1:1)-1)/16),"00")&"."&TEXT(MOD(ROWS($1:1)-1,16),"00")
> Give this a try in any starting cell, eg in A1:
> =10&"."&INT((ROWS($1:1)-1)/16)&"."&MOD(ROWS($1:1)-1,16)
[quoted text clipped - 25 lines]
> >
> > Andrew.

Signature
Dave Peterson