Wild card not working

Hi, can someone explain why this wild card isnt woring? Yes i have them enabeled, i even have one working on a different sheet with no difference that i can see.
thanks!

You probably need something like =IF(ISNA(MATCH("N*";B9;0));0;1)
See Calculate

is it ?

i found a work around using ISNUMBER(), but would really like to understand what im doing wrong. the wildcard works fine a COUNTIFS equation. does it really not work in IF?

According to the HELP, no. Scroll down to Supported Spreadsheet Functions.

2 Likes

From the help I linked

Enable wildcards in formulae

Specifies that wildcards are enabled when searching and also for character string comparisons. This relates to the database functions, and to LOOKUP, VLOOKUP, HLOOKUP, MATCH, AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, SUMIF, SUMIFS and SEARCH.

The simplest formula, =IF(LEFT(B9;1)="N";1;0), finds only upper case N, the one I gave earlier finds upper and lower case N