0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ExcelでA,B,C...AA,AB,AC みたいなのを作る

Last updated at Posted at 2019-11-19

需要があるか不明ですが、掲題について

一行目の式:=UNICHAR(64+ COLUMN())
二行目の式:=MOD(COLUMN()-1,26)
三行目の式:=ROUNDDOWN((COLUMN()-1)/26,0)
四行目の式:=UNICHAR(65+MOD((COLUMN()-1)-1,26))
とんで
六行目の式:=IF(ROUNDDOWN((COLUMN()-1)/26,0)=0,"",UNICHAR(64+ROUNDDOWN((COLUMN()-1)/26,0))) & UNICHAR(65+MOD(COLUMN()-1,26))

2019-11-19_17h23_35.png

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?