I have a cell which contains any 4 letters, example akei, skiw. How do I ask
"if the 3rd letter is an i then equals True"
I was thinking something like
"=if(a1="??i?", True, False)"
But that dosen't Work
|
I have a cell which contains any 4 letters, example akei, skiw. How do I ask "if the 3rd letter is an i then equals True" I was thinking something like "=if(a1="??i?", True, False)" But that dosen't Work |
|||
|
|
Should work, you don't need to use |
||||
|
|
|
The MID function let you to select a portion of the text, if you set the Position Start and the numbers of characters you want
so you just compare it to "i" |
|||
|
|
|
You could use the wildcard approach if you use COUNTIF like this
That will return 1 or 0 and effectively tests two things, that A1 contains 4 characters AND the third one is "i" As with MID this isn't case-sensitive so 1 will be returned for both XXIX and zziz |
|||||
|