I'm trying to find all matches regardless of capital or small letters by using this formula
=countif(AllCases!A1:A100,UPPER"*ICU*")
but it didn't work. Any idea?
CodePudding user response:
use just:
=COUNTIF(AllCases!A1:A100; "*ICU*")
I'm trying to find all matches regardless of capital or small letters by using this formula
=countif(AllCases!A1:A100,UPPER"*ICU*")
but it didn't work. Any idea?
CodePudding user response:
use just:
=COUNTIF(AllCases!A1:A100; "*ICU*")