🗾

Googleスプレッドシートで住所から都道府県を抜き出す

2020/11/08に公開

住所が入力されたセルがあり、そこから都道府県を抜き出す場合の例。

| | A | B |
| ---- | ---- | ---- | ---- | ---- |
| 1 | 住所 | 都道府県 |
| 2 | 東京都品川区xxxxxxxx | |
| 3 | 北海道札幌市xxxxxxxx | |
| 4 | 京都府京都市xxxxxxxx | |
| 5 | 大阪府大阪市xxxxxxxx | |
| 6 | 福岡県福岡市xxxxxxxx | |
| 7 | 石川県金沢市xxxxxxxx | |
| 8 | 愛知県名古屋市xxxxxxxx | |
| 9 | 埼玉県さいたま市xxxxxxxx | |
| 10 | 千葉県千葉市xxxxxxxx | |

セルB2 に以下を入力し、セルB10 までコピーすれば「結果」のようになる

セルB2
=if(countif(A2,"北海道*")>0,"北海道",
if(countif(A2,"青森県*")>0,"青森県",
if(countif(A2,"岩手県*")>0,"岩手県",
if(countif(A2,"宮城県*")>0,"宮城県",
if(countif(A2,"秋田県*")>0,"秋田県",
if(countif(A2,"山形県*")>0,"山形県",
if(countif(A2,"福島県*")>0,"福島県",
if(countif(A2,"茨城県*")>0,"茨城県",
if(countif(A2,"栃木県*")>0,"栃木県",
if(countif(A2,"群馬県*")>0,"群馬県",
if(countif(A2,"埼玉県*")>0,"埼玉県",
if(countif(A2,"千葉県*")>0,"千葉県",
if(countif(A2,"東京都*")>0,"東京都",
if(countif(A2,"神奈川県*")>0,"神奈川県",
if(countif(A2,"新潟県*")>0,"新潟県",
if(countif(A2,"富山県*")>0,"富山県",
if(countif(A2,"石川県*")>0,"石川県",
if(countif(A2,"福井県*")>0,"福井県",
if(countif(A2,"山梨県*")>0,"山梨県",
if(countif(A2,"長野県*")>0,"長野県",
if(countif(A2,"岐阜県*")>0,"岐阜県",
if(countif(A2,"静岡県*")>0,"静岡県",
if(countif(A2,"愛知県*")>0,"愛知県",
if(countif(A2,"三重県*")>0,"三重県",
if(countif(A2,"滋賀県*")>0,"滋賀県",
if(countif(A2,"京都府*")>0,"京都府",
if(countif(A2,"大阪府*")>0,"大阪府",
if(countif(A2,"兵庫県*")>0,"兵庫県",
if(countif(A2,"奈良県*")>0,"奈良県",
if(countif(A2,"和歌山県*")>0,"和歌山県",
if(countif(A2,"鳥取県*")>0,"鳥取県",
if(countif(A2,"島根県*")>0,"島根県",
if(countif(A2,"岡山県*")>0,"岡山県",
if(countif(A2,"広島県*")>0,"広島県",
if(countif(A2,"山口県*")>0,"山口県",
if(countif(A2,"徳島県*")>0,"徳島県",
if(countif(A2,"香川県*")>0,"香川県",
if(countif(A2,"愛媛県*")>0,"愛媛県",
if(countif(A2,"高知県*")>0,"高知県",
if(countif(A2,"福岡県*")>0,"福岡県",
if(countif(A2,"佐賀県*")>0,"佐賀県",
if(countif(A2,"長崎県*")>0,"長崎県",
if(countif(A2,"熊本県*")>0,"熊本県",
if(countif(A2,"大分県*")>0,"大分県",
if(countif(A2,"宮崎県*")>0,"宮崎県",
if(countif(A2,"鹿児島県*")>0,"鹿児島県",
if(countif(A2,"沖縄県*")>0,"沖縄県","")))))))))))))))))))))))))))))))))))))))))))))))

結果

| | A | B |
| ---- | ---- | ---- | ---- | ---- |
| 1 | 住所 | 都道府県 |
| 2 | 東京都品川区xxxxxxxx | 東京都 |
| 3 | 北海道札幌市xxxxxxxx | 北海道 |
| 4 | 京都府京都市xxxxxxxx | 京都府 |
| 5 | 大阪府大阪市xxxxxxxx | 大阪府 |
| 6 | 福岡県福岡市xxxxxxxx | 福岡県 |
| 7 | 石川県金沢市xxxxxxxx | 石川県 |
| 8 | 愛知県名古屋市xxxxxxxx | 愛知県 |
| 9 | 埼玉県さいたま市xxxxxxxx | 埼玉県 |
| 10 | 千葉県千葉市xxxxxxxx | 千葉県 |

Discussion