I want to add continuous series of alphabet as suffix starting from A to ZZ in my index column which start from 1.
Example
Index New Column
1 1A
2 2B
3 3C
…
26 26Z
27 27AA
28 28AB
…
and so on.
I get upto Z using
= Table.AddColumn(#"Changed Type", "New Column", each Character.FromNumber([Index] + 64), type text)