In cell A2 I input a year (2008, 2009 ect) in cell A11 I need a formula
which will return a value which represents the first day of January of the
year displayed in cell A2.
Ron Rosenfeld - 21 Feb 2008 17:15 GMT
>In cell A2 I input a year (2008, 2009 ect) in cell A11 I need a formula
>which will return a value which represents the first day of January of the
>year displayed in cell A2.
=date(a2,1,1)
--ron
Rick Rothstein (MVP - VB) - 22 Feb 2008 00:45 GMT
The parentheses and double minus sign are required...
=--("1/1/"&A2)
Rick
> In cell A2 I input a year (2008, 2009 ect) in cell A11 I need a formula
> which will return a value which represents the first day of January of the
> year displayed in cell A2.