Prev: View Message when Mouse Hovers over Cell. (Not the Comments Feild)
Next: Excel formula to incrementally increase a value by 1 every 365 day
From: krishna K krishna on 31 May 2010 01:17 I have the various dates on which our staff have joined the organisation. I need a column that would convert all the year part of the date into the current year so that the increment date could be traced. Single command or macro would do. I need this feature in Excel sheet, preferably. However, if there is any other option, i would like to pursue it as well. Writing of code should be avoided.
From: Jacob Skaria on 31 May 2010 01:32
=DATE(YEAR(TODAY()),MONTH(A1),DAY(A1)) OR handling blanks. =IF(A1,DATE(YEAR(TODAY()),MONTH(A1),DAY(A1)),"") -- Jacob (MVP - Excel) "krishna K" wrote: > I have the various dates on which our staff have joined the organisation. I > need a column that would convert all the year part of the date into the > current year so that the increment date could be traced. Single command or > macro would do. I need this feature in Excel sheet, preferably. However, if > there is any other option, i would like to pursue it as well. Writing of code > should be avoided. |