Reputation: 139
I'm trying to mass-produce a list such as,
Type A Type B Type C .. ... .... Type Z
How can I do it with Excel? I will be generating not just "type" but any other text combined with an alphabet on the right.
Upvotes: 0
Views: 300
Reputation: 50007
Perhaps like this:
="Type " & CHAR(ROW(A65))
Or if you're dragging across instead of down:
="Type " & CHAR(COLUMN(BM1))
Upvotes: 3