Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations sizbut on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

conversion of a date in excel 2

Status
Not open for further replies.

collierd

MIS
Dec 19, 2001
509
DE
Hello

Within Excel I have a date displayed as Jul-06 (this is 01/07/06)
I have another cell with a reference in it (ASP)

I am looking to concatinate these 2 cell with a * delimiter to form

01/07/06*ASP

I can't seem able to do this as the system converts this to an internal date

Does anybody have any ideas how to go about achieving this?

Thanks

Damian.
 



Hi,

Use the TEXT function
[tt]
=TEXT(A1,"mm/dd/yy")&" * "&A2
[/tt]
assuming that A1 has the date and A2 has ASP

Skip,

[glasses] [red][/red]
[tongue]
 
=TEXT(A1,"mmm-dd")&" * "&B1

With the date in A1 and ASP in B1

[Blue]Blue[/Blue] [Dragon]

If I wasn't Blue, I would just be a Dragon...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top