0
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?

Excelで内部結合・外部結合

Last updated at Posted at 2024-12-23

はじめに

DBを使うほどではないデータ処理では、多くの方がExcelを使うと思います。
Excel関数で内部結合、外部結合を行う際の備忘録として書いておきます。

基本的に「XLOOKUP」を使っての結合になります。
PowerQueryは追々…

結合

サンプルデータ

table_a
code data
101 …a…101…
102 …a…102…
103 …a…103…
201 …a…201…
202 …a…202…
203 …a…203…
 
table_b
code data
201 …b…201…
202 …b…202…
203 …b…203…
204 …b…204…
205 …b…205…
206 …b…206…

Excel上はこのようになります。

image.png

image.png

LEFT JOIN

image.png

1.A、B列は「table_a」のデータを張り付ける
2.C2セルに以下の式を入力 ⇒ C2:D7にコピーする

=XLOOKUP(\$A2,table_b!\$A:$A,table_b!A:A,"NULL")

RIGHT JOIN

image.png

1.C、D列は「table_b」のデータを張り付ける
2.A2セルに以下の式を入力 ⇒ A2:B7にコピーする

=XLOOKUP(\$C2,table_a!\$A:$A,table_a!A:A,"NULL")

INNER JOIN

image.png

1.LEFT JOINの「table_b.code」がNULLのデータを除外する

NOT EXISTS

image.png

1.LEFT JOINの「table_b.code」がNULLのデータ以外を除外する

FULL JOIN

image.png

1.「RIGHT JOIN」のデータと「NOT EXISTS」のデータを合わせる

0
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
0
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?