Forum Discussion
Series Fill
- Sep 15, 2021
In formula:
=CHAR(TRUNC((ROW(A1)-1)/26/26,0)+65)&CHAR(MOD(TRUNC((ROW(A1)-1)/26,0),26)+65)&CHAR(MOD(ROW(A1)-1,26)+65)
with VBA:
insert into a module
Sub AA_AAZ() Dim wks As Worksheet Set wks = Worksheets("Tabelle1") zeile = 2 For z = 65 To 90 For s = 65 To 90 wks.Cells(zeile, 1) = Chr(z) & Chr(s) zeile = zeile + 1 Next s Next z End SubFile with examples inserted.
I would be happy to know if I could help.
NikolinoDE
I know I don't know anything (Socrates)
* Kindly Mark and Vote this reply if it helps please, as it will be beneficial to more Community members reading here.
In formula:
=CHAR(TRUNC((ROW(A1)-1)/26/26,0)+65)&CHAR(MOD(TRUNC((ROW(A1)-1)/26,0),26)+65)&CHAR(MOD(ROW(A1)-1,26)+65)
with VBA:
insert into a module
Sub AA_AAZ()
Dim wks As Worksheet
Set wks = Worksheets("Tabelle1")
zeile = 2
For z = 65 To 90
For s = 65 To 90
wks.Cells(zeile, 1) = Chr(z) & Chr(s)
zeile = zeile + 1
Next s
Next z
End SubFile with examples inserted.
I would be happy to know if I could help.
NikolinoDE
I know I don't know anything (Socrates)
* Kindly Mark and Vote this reply if it helps please, as it will be beneficial to more Community members reading here.
NikolinoDEThanks for your reply, your formula has saved my a lot of work. Thanks once again.