LoginSignup
0
0

More than 5 years have passed since last update.

excel 関数 文字列同じかどうか EXACT

Last updated at Posted at 2019-03-09

■A列とB列の文字列が同じかどうかか確認する
C列に以下の内容を入れる。
=EXACT(A1,B1)
正しい場合、「TRUE」
誤っている場合、「FALSE」

■「TRUE」「FALSE」の表記を変更したい場合
C列に以下の内容を入れる。
=IF(EXACT(A1,B1),"正","誤")
正しい場合、「正」
誤っている場合、「誤」

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