Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]() 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
![]() |
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Text Box Formula | New Users to Excel | |||
Macro to convert text to date | Excel Worksheet Functions | |||
Change Text Data to Date | Excel Discussion (Misc queries) | |||
EXTRACT TEXT FROM A DATE | Excel Worksheet Functions | |||
Addition to Turn cell red if today is greater or equal to date in cell | New Users to Excel |