Simple question....

O

Omakbob

but I can't figure out the answer. I have the following formula in a cell:

=CONCATENATE("Effective Date: ",SIC!I21)

SIC!I21 is a date, but in the cell with the above formula, it shows up as
39173 when it should read 04/01/07.

How do I get it to change from 39173 to 04/01/07?

Thanks
 
D

Dave Peterson

=CONCATENATE("Effective Date: ",text(SIC!I21,"mm/dd/yyyy")
or just:
="Effective Date: " & text(SIC!I21,"mm/dd/yyyy")
 
O

Omakbob

Thank you very much!

Dave Peterson said:
=CONCATENATE("Effective Date: ",text(SIC!I21,"mm/dd/yyyy")
or just:
="Effective Date: " & text(SIC!I21,"mm/dd/yyyy")
 
D

David Biddulph

=CONCATENATE("Effective Date: ",TEXT(SIC!I21,"mm/dd/yy"))
or alter the format element of the TEXT function to suit.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top