change date formatting in destination cell

M

Melody

I have a date cell that I want formatted "January 1, 2008"; I want to pull
that date into another cell to minimize error, but I want it to be formatted
"1/01/08" because of space limitations. I can't figure out how to change the
date format in my destination cell - is this even possible?

Thanks,
Melody
 
D

Dave Peterson

You can use a formula like:
=a1
or
=if(a1="","",a1)
or
=if(sheet1!a1="","",sheet1!a1)

But then you'll want to format that receiving cell:
Format|cells|Number tab
Date (and choose one of the prebuilt formats)

or use custom: m/d/yy or mm/dd/yy or whatever you want
 

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