Hi ,
The problem is that Excel recognizes data entered as dates based on whether it is a valid date in your system date format , and whether it is a standalone item of data.
Thus , if your system date format is dd/mm/yyyy , then Excel will recognize 24/05/2014 as a valid date , but will interpret 05/24/2014 as text.
Also , 24/05/2014 will be recognized as a valid date , but 24/05/2014 - (2*7) will become text.
Lastly , if you try to use the = sign to tell Excel to interpret the entire expression as a formula , then Excel takes the expression 24/05/2014 not as a valid date , but as 24 divided by 5 divided by 2014 !
So either you go with what Misra has posted , or you have to put the whole expression in a format that Excel can understand and evaluate ; so you can enter :
=DATEVALUE("24/05/2014") - (2*7)
and you should have your answer.
Narayan