How to concatenate text & date

  • Thread starter Thread starter AcctCA755
  • Start date Start date
A

AcctCA755

How do I combine paydate & 01/02/09?

=concatenate(A1,B1) formats the date as 35983.

I want the date to appear as 01/02/09.
 
In A1 we have "payday "
In B1 put =TODAY()

In C1 enter:

=A1 & TEXT(B1,"mm/dd/yy")
 
Back
Top