The data in TheRange
is {1,"",1,"",1,"",1,"",2}
.
=Match(2, TheRange, 1)
returns9
as expected.=Match(1.5, TheRange, 1)
returns7
as expected.=Match(1, TheRange, 1)
returns5
which is not expected.
Has anyone come across this ? Does anyone have a fix?
Additionally, if I use Worksheet.Function.Match
in VBA, I get more unexpected results.