Olá!
Eu fiz por VBA, conforme o código acima. Não tenho uma solução direta por fórmulas, mas vou postar aqui o código modificado e a planilha atualizada.
Sub ate_10000format()
Dim a As Long, b As Long, c As Long, d As Long, e As Long, f As Long, rg As Long
a = 1
For rg = 1 To 2000
b = a + 1
c = b + 1
d = c + 1
e = d + 1
ActiveSheet.Range("A" & rg).Value = Format(a, "0000") & ", " & Format(b, "0000") & ", " & Format(c, "0000") & ", " & Format(d, "0000") & ", " & Format(e, "0000")
f = e + 1
a = f
Next rg
End Sub
Postado : 28/03/2013 2:13 pm