I have the formula:
=IF(C2=$C$1:C2,1,0)
which returns the value 1 (I believe this is correct as C2 will find a match with C2). My problem is that if I turn this into an array formula
{=IF(C2=$C$1:C2,1,0)}
this returns a value of 0, however I am not sure why.
Could someone provide an explanation on the different results from each formula?
{=IF(C2=$C$1:C2,1,0)}will return an ARRAY, so if other cells are filled in it is possible you are seeing only the first result from an array.