I am trying to append some text to excel cell.
For example if the cell A1 has the date 17-Jan-12 , the formula should
append text to the date as “17-Jan-12 today” .
No matter what I try I get the datevalue of the date and then text appended like this – `
“40912 today”
How do I get this?
This is what I am doing
=CONCATENATE(A1," Today")
Excel stores dates as numbers: that’s why you’re seeing that behaviour. You want something like this (adjust format to suit):