Look at the expression
=AND(EXACT(B9:F9,B9))
if you select the text part of that EXACT(B9:F9,B9)
Now Press F9 it displays {TRUE,TRUE,TRUE,TRUE,TRUE}
Which is the comparisson of F9 with each cell in the range
In this case they are all exact matches and so it displays an array of "True""
The And() parts now looks at the array and sees if they are all true and if they are returns True
If one is wrong
eg: Texas is in one of the cells eg C9
The EXACT(B9:F9,B9) returns
{TRUE,FALSE,TRUE,TRUE,TRUE}
and And() returns False
Thank you.It would work in Excel 365 because that defaults to array formulas. In other versions, the formula may not error if there is a cell from B9:F9 in the same column as the formula. That does not mean it is performing the correct calculation, however, it will be using implicit intersection to pick a single cell out of the array. This only happens on the grid. If you place the formula
= EXACT(B9:F9, B9)
in Name Manager's 'refers to' box for a Name 'exactMatch' (say)
then
= AND(exactMatch)
will work with or without CSE.