Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello,
OK, what i want to achive is this; =IF(A10,NOW()) But! How do I stop the time re-calculating each time? Any help welcome |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You would have to manually convert to a value or use a macro or use
ctrl+colon or shift colon -- Don Guillett SalesAid Software "LaDdIe" wrote in message ... Hello, OK, what i want to achive is this; =IF(A10,NOW()) But! How do I stop the time re-calculating each time? Any help welcome |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Don, I'll go via the macro route
"Don Guillett" wrote: You would have to manually convert to a value or use a macro or use ctrl+colon or shift colon -- Don Guillett SalesAid Software "LaDdIe" wrote in message ... Hello, OK, what i want to achive is this; =IF(A10,NOW()) But! How do I stop the time re-calculating each time? Any help welcome |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Use an event macro:
Private Sub Worksheet_Change(ByVal Target As Range) Application.EnableEvents = False If IsEmpty(Range("B1")) Then If Range("A1").Value 0 Then Range("B1").Value = Now() End If End If Application.EnableEvents = True End Sub This puts NOW() in B1, but as value and only once. REMEMBER: this goes in worksheet code, not a standard module -- Gary''s Student gsnu200711 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Take a look at the event macro that JE McGimpsey shares:
http://www.mcgimpsey.com/excel/timestamp.html LaDdIe wrote: Hello, OK, what i want to achive is this; =IF(A10,NOW()) But! How do I stop the time re-calculating each time? Any help welcome -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula to find Stop Time from Start Time and Total Minutes | Excel Worksheet Functions | |||
template or formula for start time -finish time -total hours ple | New Users to Excel | |||
Calculating days & time left from start date/time to end date/time | Excel Worksheet Functions | |||
Show timesheet time in and out in regular time versus military tim | Excel Worksheet Functions | |||
Remove time from a date and time field? Format removes the displa. | Excel Worksheet Functions |