#1   Report Post  
tobriant
 
Posts: n/a
Default Date to Text


I need to turn a date into text. For example, I am using the custom
format dddd for a block of cells, which returns the day name of the
date entered (e.g., 8/5/05 returns Friday). I need to turn the "Friday"
into text, so the date value is no longer associated.

Main goal, I am making a calendar for access, and want the actual name
of the day, not the value. Any suggestions?


--
tobriant
------------------------------------------------------------------------
tobriant's Profile: http://www.excelforum.com/member.php...o&userid=25155
View this thread: http://www.excelforum.com/showthread...hreadid=393337

  #2   Report Post  
Bernie Deitrick
 
Posts: n/a
Default

tobriant,

Select your cells with the day names, and run this macro:

Sub TryNow()
Dim myCell As Range
For Each myCell In Selection
myCell.Value = myCell.Text
Next myCell
End Sub

Or, use a formula in another block of cells:

=TEXT(A1,"dddd")

and copy down, then copy / pastespecial values over the original data.

HTH,
Bernie
MS Excel MVP


"tobriant" wrote in message
...

I need to turn a date into text. For example, I am using the custom
format dddd for a block of cells, which returns the day name of the
date entered (e.g., 8/5/05 returns Friday). I need to turn the "Friday"
into text, so the date value is no longer associated.

Main goal, I am making a calendar for access, and want the actual name
of the day, not the value. Any suggestions?


--
tobriant
------------------------------------------------------------------------
tobriant's Profile: http://www.excelforum.com/member.php...o&userid=25155
View this thread: http://www.excelforum.com/showthread...hreadid=393337



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
Text Box Formula mully New Users to Excel 1 July 7th 05 06:28 PM
Macro to convert text to date Nortos Excel Worksheet Functions 2 May 11th 05 10:42 AM
Change Text Data to Date Charles Excel Discussion (Misc queries) 2 April 26th 05 08:11 PM
EXTRACT TEXT FROM A DATE Ronbo Excel Worksheet Functions 5 February 1st 05 07:39 AM
Addition to Turn cell red if today is greater or equal to date in cell Rich New Users to Excel 2 December 9th 04 02:06 AM


All times are GMT +1. The time now is 05:19 PM.

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

About Us

"It's about Microsoft Excel"