Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]() Hello, I want to show current date and current time in a single cell. I have tried by using today() and now() functions separately, i dont know how to use together in a sigle cell. I want like 28-Mar-06, 12.05 PM. Also I want to add text to it. Like Report for 28-Mar-06. Experts please help me Thanks Ravi -- vsr_kmb ------------------------------------------------------------------------ vsr_kmb's Profile: http://www.excelforum.com/member.php...o&userid=32834 View this thread: http://www.excelforum.com/showthread...hreadid=527066 |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Enter =NOW() in a cell and format as dd-mmm-yy hh:mm
to get text as well format as "Report for "dd-mmm-yy hh:mm You don't even need to concatenate anything -- Gary's Student "vsr_kmb" wrote: Hello, I want to show current date and current time in a single cell. I have tried by using today() and now() functions separately, i dont know how to use together in a sigle cell. I want like 28-Mar-06, 12.05 PM. Also I want to add text to it. Like Report for 28-Mar-06. Experts please help me Thanks Ravi -- vsr_kmb ------------------------------------------------------------------------ vsr_kmb's Profile: http://www.excelforum.com/member.php...o&userid=32834 View this thread: http://www.excelforum.com/showthread...hreadid=527066 |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Hi Ravi........
Here's a little macro that will do it for you....... Sub TimeStamp() ' Select a cell and run this macro to Date/Time stamp ActiveCell.FormulaR1C1 = "Report for " & Date & " " & Time End Sub hth Vaya con Dios, Chuck, CABGx3 "vsr_kmb" wrote: Hello, I want to show current date and current time in a single cell. I have tried by using today() and now() functions separately, i dont know how to use together in a sigle cell. I want like 28-Mar-06, 12.05 PM. Also I want to add text to it. Like Report for 28-Mar-06. Experts please help me Thanks Ravi -- vsr_kmb ------------------------------------------------------------------------ vsr_kmb's Profile: http://www.excelforum.com/member.php...o&userid=32834 View this thread: http://www.excelforum.com/showthread...hreadid=527066 |
#4
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Hi Ravi...........
Here's a formula solution.......... ="Report for "&TEXT(NOW(),"MMM dd, yyyy hh:mm AM/PM") hth Vaya con Dios, Chuck, CABGx3 "vsr_kmb" wrote: Hello, I want to show current date and current time in a single cell. I have tried by using today() and now() functions separately, i dont know how to use together in a sigle cell. I want like 28-Mar-06, 12.05 PM. Also I want to add text to it. Like Report for 28-Mar-06. Experts please help me Thanks Ravi -- vsr_kmb ------------------------------------------------------------------------ vsr_kmb's Profile: http://www.excelforum.com/member.php...o&userid=32834 View this thread: http://www.excelforum.com/showthread...hreadid=527066 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Show current date in cell | Excel Discussion (Misc queries) | |||
Current date and time updated automatically | Excel Discussion (Misc queries) | |||
How to calculate Date & Time differences | Excel Worksheet Functions | |||
Using VLOOKUP with a Date and Time | Excel Discussion (Misc queries) | |||
How do I format column containing date and time to only show the . | Excel Discussion (Misc queries) |