![]() |
#1
|
|||
|
|||
![]() I have a unsolved issue with this problem: |
#2
|
||||
|
||||
![]()
__________________
Using O365 v2503 - Did you know you can thank someone who helped you? Click on the tiny scale in the right upper hand corner of your helper's post |
#3
|
|||
|
|||
![]() SOLVED.... |
#4
|
|||
|
|||
![]()
Glad you found the solution, but i really believe it's wrong...
For 2 reasons: you create a circular reference by refering in the formula to the cell where the formula is placed, and second reason is that if you eliminate the first problem, and you have a value in A1, your formula will put a formula in B1: Now(), formula that will permanently refresh, and you said you need the time when data is entered in A1, not the Now() value.. To insert a permanent date and time value in a cell, can be done with a macro, targeted to A column |
#5
|
|||
|
|||
![]()
That is correct, but after I'm done and I print the report I dont need this sheet anymore ... BUT for the future use of the sheet, I should probably consider your solution!
I enabled the circular formula with: tools > options > calculation tab and click the iteration box Thanks for the all Help! |
#6
|
|||
|
|||
![]()
This is the way to get a good result
Code:
Private Sub Worksheet_Change(ByVal Target As Range) Dim RNG As Range, cell Set RNG = ActiveSheet.Range("A2:A10") If Not Intersect(Target, RNG) Is Nothing Then For Each cell In RNG If Len(cell) > 0 And Not IsEmpty(cell) Then cell.Offset(0, 1) = Now() End If Next cell End If End Sub |
#7
|
|||
|
|||
![]()
Made some corrections to work properly:
Code:
Private Sub Worksheet_Change(ByVal Target As Range) Dim RNG As Range, cell Set RNG = ActiveSheet.Range("A2:A10") If Not Intersect(Target, RNG) Is Nothing Then For Each cell In RNG If Len(cell) > 0 And IsEmpty(cell.Offset(0, 1)) Then cell.Offset(0, 1) = Now() End If Next cell End If End Sub |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
PomDave | Excel | 5 | 09-05-2011 10:49 PM |
Item Already updated | simon@resultsoftware.co.u | Outlook | 0 | 07-25-2011 04:30 AM |
![]() |
ezthelm | Word | 2 | 05-30-2011 03:45 AM |
![]() |
derelyth | Excel | 4 | 03-27-2011 04:31 PM |
Outlook 2002 duplicating updated calendar events | RMTony | Outlook | 0 | 12-29-2010 11:48 AM |