#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 61
Default Dates as text

using a formula, I am combining a column heading and the date in that row, so
that the cell will read "Column Heading Date", but the date is showing as a
number rather than a date. I want the cell to contain both txt (column
heading), and a date. How do I format it to do so?

  #2   Report Post  
Posted to microsoft.public.excel.misc
CM CM is offline
external usenet poster
 
Posts: 136
Default Dates as text

assuming your date is in cell A1:

="heading text "&DAY(A1)&"/"&MONTH(A1)&"/"&YEAR(A1)
--
hope to help,
cm


"lightbulb" wrote:

using a formula, I am combining a column heading and the date in that row, so
that the cell will read "Column Heading Date", but the date is showing as a
number rather than a date. I want the cell to contain both txt (column
heading), and a date. How do I format it to do so?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,533
Default Dates as text

Hi

Try this:

=A1 & " " & TEXT(A3,dd.mm.yy")

where date is in A3

Hopes this helps.
....
Per

"lightbulb" skrev i meddelelsen
...
using a formula, I am combining a column heading and the date in that row,
so
that the cell will read "Column Heading Date", but the date is showing as
a
number rather than a date. I want the cell to contain both txt (column
heading), and a date. How do I format it to do so?


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7,247
Default Dates as text

Or, simpler,

="Heading test"&TEXT(A1,"dd/mm/yyyy")

Cordially,
Chip Pearson
Microsoft MVP 1998 - 2010
Pearson Software Consulting, LLC
www.cpearson.com
[email on web site]


On Mon, 21 Dec 2009 12:20:01 -0800, cm
wrote:

assuming your date is in cell A1:

="heading text "&DAY(A1)&"/"&MONTH(A1)&"/"&YEAR(A1)

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 61
Default Dates as text

This is close....for example my date is 05/01/2010, and after the formula, it
reads 1/5/2010....further help?


"cm" wrote:

assuming your date is in cell A1:

="heading text "&DAY(A1)&"/"&MONTH(A1)&"/"&YEAR(A1)
--
hope to help,
cm


"lightbulb" wrote:

using a formula, I am combining a column heading and the date in that row, so
that the cell will read "Column Heading Date", but the date is showing as a
number rather than a date. I want the cell to contain both txt (column
heading), and a date. How do I format it to do so?



  #6   Report Post  
Posted to microsoft.public.excel.misc
CM CM is offline
external usenet poster
 
Posts: 136
Default Dates as text

switch places with the day and month:

="text "&MONTH(A1)&"/"&DAY(A1)&"/"&YEAR(A1)

--
hope to help,
cm


"lightbulb" wrote:

This is close....for example my date is 05/01/2010, and after the formula, it
reads 1/5/2010....further help?


"cm" wrote:

assuming your date is in cell A1:

="heading text "&DAY(A1)&"/"&MONTH(A1)&"/"&YEAR(A1)
--
hope to help,
cm


"lightbulb" wrote:

using a formula, I am combining a column heading and the date in that row, so
that the cell will read "Column Heading Date", but the date is showing as a
number rather than a date. I want the cell to contain both txt (column
heading), and a date. How do I format it to do so?

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default Dates as text

Or shorter,
="text "&Text(a1,"mm/dd/yyyy")

Regards,
Fred


"cm" wrote in message
...
switch places with the day and month:

="text "&MONTH(A1)&"/"&DAY(A1)&"/"&YEAR(A1)

--
hope to help,
cm


"lightbulb" wrote:

This is close....for example my date is 05/01/2010, and after the
formula, it
reads 1/5/2010....further help?


"cm" wrote:

assuming your date is in cell A1:

="heading text "&DAY(A1)&"/"&MONTH(A1)&"/"&YEAR(A1)
--
hope to help,
cm


"lightbulb" wrote:

using a formula, I am combining a column heading and the date in that
row, so
that the cell will read "Column Heading Date", but the date is
showing as a
number rather than a date. I want the cell to contain both txt
(column
heading), and a date. How do I format it to do so?


  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Dates as text

="Column Heading " & TEXT(A1,"mm-dd-yyyy")


Gord Dibben MS Excel MVP


On Mon, 21 Dec 2009 12:16:01 -0800, lightbulb
wrote:

using a formula, I am combining a column heading and the date in that row, so
that the cell will read "Column Heading Date", but the date is showing as a
number rather than a date. I want the cell to contain both txt (column
heading), and a date. How do I format it to do so?


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Count Dates between Dates exclude Text Ken Excel Discussion (Misc queries) 3 April 8th 09 07:59 PM
Dates & Text? Ken Excel Discussion (Misc queries) 6 January 30th 09 01:19 PM
Dates from Text cloudyMalta Excel Worksheet Functions 4 November 6th 08 05:20 PM
How do I convert dates stored as dates to text? diamunds Excel Discussion (Misc queries) 5 September 7th 07 05:38 PM
Format text 'dates' to real dates Jacy Excel Worksheet Functions 4 July 24th 06 02:10 AM


All times are GMT +1. The time now is 07:13 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"