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?

More than 1 year has passed since last update.

Excelの条件付き書式で使いそうな数式

Posted at

指定したセルの値がすべて大文字の場合、TRUE

=EXACT(セル,UPPER(セル))

指定したセルの値がすべて小文字の場合、TRUE

=EXACT(セル,LOWER(セル))

指定したセルに大文字が含まれている場合、TRUE

=NOT(EXACT(セル,LOWER(セル)))

指定したセルに子文字が含まれている場合、TRUE

=NOT(EXACT(セル,UPPER(セル)))
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?