The scenario I have is as follows:
- Cell A1 - contains the name of the current month, e.g. "October"
- Cell A2 - contains the value of the current year, e.g. "2014"
- Cell A3 - contains the value of a given day, e.g "22"
I'd like to populate A3 with a formula that will give it the value 22 October 2014 and have this formatted as a date so I can perform comparisons and calculations in other cells - so along the lines of 22
+ A1
+ A2
. I've tried using the CONCATENATE
function but this doesn't let me format the cell as a date.
Is something like this even possible using the standard Excel functions?