description: difference between .text .value .value2 in Excel
.text
get the screen displayed text1
2cells(1,1).text
'get ##### if the cell width too short
.value
can get formatted Currency and date1
2cells(1,1).value
'get 13/02/2016 12:52 if it is a date
.value2
get underlying value (include empty, string, error, number and boolean)1
2cells(1,1).value2
'get 2342432.12 if it is a date