1
0

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の小技まとめ

Last updated at Posted at 2019-12-10

Excelのマクロが使えなくても小技を知っていれば安心

私はVBAでマクロも組めるのですが人間は基本頭を使いたくない生き物なのでもっぱら小技で乗り切っています。

私は極端な例でいうと擦り切れるまで使いたいExcelシートを作りたいです。
想定されるユーザーは家が本であふれてる自分自身、シートを使う目的はHTMLの自動生成、そして家計簿が中心です。

以下、いつもググってしまう小技とそのリンクを紹介させていただきます。

いつもググってしまう小技

シートのタブ名を取得

リンク先

=MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,255)

便利なTEXT関数

月日(曜日)で表示する

=TEXT([セル],"mm月dd日(aaa)")

桁区切りで表示

=TEXT([セル],"###,###")

リストの出現回数でランキングを作成

以下のような表から出現回数とランキングを表示

image.png

出現数の出し方

sample.xlsx
=COUNTIF($B:$B,D4)

順位の出し方

sample.xlsx
=RANK(E4,E:E,0)

更新履歴

  • 2019/12/10 作成
1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?