LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 37
Default Insert a date that does not update if a condition is true

The cell holding the Date is C4 (it looks at C3, IF(C3 0, ...date..., " ")).

This would be for cells in Rows 4, 6, 8, 10, & 12; Columns C thru G, looking
at the cell directly above. -Thx!
--
FirstVette52


"Mike H" wrote:

Hi,

This works for C3 onlt, if you want a alrger range then post back. Right
click your sheet tab, view code and paste this in

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count 1 Or IsEmpty(Target) Then Exit Sub
If Target.Address = "$C$3" And _
Target.Value 0 And _
IsNumeric(Target) Then
Application.EnableEvents = False
Target.Offset(, 1).Value = Now
Application.EnableEvents = True
End If
End Sub

Mike

"FirstVette52" wrote:

The cell needs to contain a 'Date/Time Stamp', so the TODAY() function is not
an option (always stamps the time as midnight).

Yes please, I would appreciate help with the code. I'm not a VBA Coder but I
understand it somewhat. Thank you both for your help! Greatly appreciated.
--
FirstVette52


"Shane Devenshire" wrote:

Hi,

You will probably have to consider a macro. Do you want to code this?

--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"FirstVette52" wrote:

Hey and thanks in advance

I need to insert the current date and time into a cell (that will not update
again) IF another cell is not empty:

IF(C30,NOW()," ")

However, this formula allows the date and time to update each time the
workbook functions update. I need the date to be fixed.

Thx!
--
FirstVette52



 
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
result if a condition is NOT true? Roland Excel Worksheet Functions 2 March 7th 07 09:25 AM
Continually check if condition is true in VBA [email protected] Excel Discussion (Misc queries) 1 October 4th 06 05:43 PM
TRUE condition??? pmguerra Excel Discussion (Misc queries) 2 June 5th 06 04:27 PM
How to get date entered recording first time condition is true? Dan Morton Excel Discussion (Misc queries) 5 September 8th 05 12:19 AM
How Do I Hide A Row (if a condition is true) using a Macro ? Anthony Fantone Excel Worksheet Functions 1 June 16th 05 04:54 PM


All times are GMT +1. The time now is 04:33 AM.

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"