Conditional Formatting (IF not empty)

后端 未结 6 623
一向
一向 2021-01-04 06:06

How do I conditionally format a cell so if not blank it is grey?

I tried to do \'not equal\', but it didn\'t work.

I am using Windows Office 2003 with Wind

6条回答
  •  青春惊慌失措
    2021-01-04 06:41

    You can use Conditional formatting with the option "Formula Is". One possible formula is

    =NOT(ISBLANK($B1))
    

    enter image description here

    Another possible formula is

    =$B1<>""
    

    enter image description here

提交回复
热议问题