Hi Manish ,
One good way to understand the significance of the CTRL SHIFT ENTER , is to use the Evaluate Formula facility available in Excel.
If you take the example given earlier i.e. suppose the cell A2 contains the text manish.agrawal446 ; suppose your formula :
=MIN(IFERROR(FIND(lstNumbers,A2),""))
entered as a normal formula ( not using CTRL SHIFT ENTER ) is in cell B1.
Place the cursor in B1 and click on the Evaluate Formula button and step through the complete formula.
At one stage , you will see the result as :
MIN(IFERROR(FIND(6,"manish.agrawal446"),"")
This 6 is actually some random number ; if you experiment and see , you will find that changing the named range lstNumbers , from one set of addresses to another , will change this from 6 to 9 , which will result in a #VALUE! output !
Now , enter the above formula , this time using CTRL SHIFT ENTER , in cell B2. Place the cursor in B2 and click on the Evaluate Formula button and step through the complete formula.
At the same stage , you will now see :
MIN(IFERROR(FIND({0;1;2;3;4;5;6;7;8;9},"manish.agrawal446"),"")
The array formula is evaluated using all the digits specified in the range lstNumbers ; the non-array formula is evaluated using only one digit. The results of these two methods of evaluation can be vastly different.
Narayan