date format not change in custom

C

crapit

Hi,
I use CONCATENATE fx to join 3 columns of data containing year month and
date. I copied the column containing the CONCATENATE function and paste as
value in a new column. I set custom to format as dd.mmm.yyyy in the new
column (My computer regional short date format is dd/mm/yyyy). but the
format didnt appear as dd.mm.yyyy. Instead, I had to edit or f2 the cell
then enter to make the conversion take place. What is unique abt the date
format?
 
G

google

Rather than CONCATENATE use something like:

=DATEVALUE(A1&"/"&B1&"/"C1)

This will create an actual date, rather than a text image that looks
like a date. Your custom date format will work after the date format
is recognized.

The order of A1&"/"&B1&"/"C1 may differ according to the 'short date'
setting on your computer.
 
D

Dave Peterson

=date(a1,b1,c1)
where a1 contains the year, b1 contains the month and c1 contains the day.

Format the cell the way you like.
 

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

Similar Threads

date format convert 2
Default date format 4
Date Format Problem. 2
How to enter a date in DD-MM-YYYY format 2
cannot change date format 4
Date Format 3
Date format 1
Autofilter Problem 2

Top