Welcome to the Excel Forum

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed.

Please Register to Remove these Ads

Please Register to Remove these Ads



Reply
  #1  
Old 06-21-2005, 04:31 AM
daolb daolb is offline
Registered User
 
Join Date: 21 Jun 2005
Posts: 12
daolb is becoming part of the community
date

Please Register to Remove these Ads

If have three columns. One which reflect the status of the record. OK/NOK.
Every time I change the status, excel has to adapt the date and hour in respectively column 2 and 3.
which formula do I have to use?
note that only the date of the changed record may be adapted, and not date of the other records.

thanks in advance.
david
Reply With Quote
  #2  
Old 06-21-2005, 06:05 AM
Bob Phillips
Guest
 
Posts: n/a
Re: date

Private Sub Worksheet_Change(ByVal Target As Range)

On Error GoTo ws_exit:
Application.EnableEvents = False
If Not Intersect(Target, Me.Range("A:A")) Is Nothing Then
With Target
.Offset(0, 1).Value = Format(Date, "dd mmm yyyy")
.Offset(0, 2).Value = Format(Time, "h")
End With
End If

ws_exit:
Application.EnableEvents = True
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.

--
HTH

Bob Phillips

"daolb" <daolb.1qyyak_1119344725.8483@excelforum-nospam.com> wrote in
message news:daolb.1qyyak_1119344725.8483@excelforum-nospam.com...
>
> If have three columns. One which reflect the status of the record.
> OK/NOK.
> Every time I change the status, excel has to adapt the date and hour in
> respectively column 2 and 3.
> which formula do I have to use?
> note that only the date of the changed record may be adapted, and not
> date of the other records.
>
> thanks in advance.
> david
>
>
> --
> daolb
> ------------------------------------------------------------------------
> daolb's Profile:

http://www.excelforum.com/member.php...o&userid=24478
> View this thread: http://www.excelforum.com/showthread...hreadid=380794
>



Reply With Quote
  #3  
Old 06-22-2005, 03:36 AM
daolb daolb is offline
Registered User
 
Join Date: 21 Jun 2005
Posts: 12
daolb is becoming part of the community
thanks

thanks bob, it works fine.
Reply With Quote
  #4  
Old 06-22-2005, 04:45 AM
daolb daolb is offline
Registered User
 
Join Date: 21 Jun 2005
Posts: 12
daolb is becoming part of the community
addition

In addition to the previous question I would also like to calculate and show (in colomn 4) the number of times the value of the column status is changed.
Reply With Quote
  #5  
Old 06-22-2005, 06:03 AM
mangesh_yadav mangesh_yadav is offline
Forum Guru
 
Join Date: 10 Jun 2004
Location: India
Posts: 1,068
mangesh_yadav is becoming part of the community
A line added for the 4th column:

Private Sub Worksheet_Change(ByVal Target As Range)

On Error GoTo ws_exit:
Application.EnableEvents = False
If Not Intersect(Target, Me.Range("A:A")) Is Nothing Then
With Target
.Offset(0, 1).Value = Format(Date, "dd mmm yyyy")
.Offset(0, 2).Value = Format(Time, "h")
.Offset(0, 3).Value = .Offset(0, 3).Value + 1 ' this is new line
End With
End If

ws_exit:
Application.EnableEvents = True
End Sub


Mangesh
Reply With Quote
  #6  
Old 06-22-2005, 07:16 AM
daolb daolb is offline
Registered User
 
Join Date: 21 Jun 2005
Posts: 12
daolb is becoming part of the community
doesn't work anymore

mangesh,

Thanks for your help. How is the weather in india?

I've a problem. allthough I didn't changed the VB code, the functionality doesn't work anymore. Date and time aren't filled in automatically.
Can you give a hint, what the problem could be?

ps; if you ever visit belgium, then I will give you some toeristic tips!!
Reply With Quote
  #7  
Old 06-22-2005, 07:38 AM
mangesh_yadav mangesh_yadav is offline
Forum Guru
 
Join Date: 10 Jun 2004
Location: India
Posts: 1,068
mangesh_yadav is becoming part of the community
Hi David,

The monsoons have arrived with a bang, and thanks for that lovely suggestion about the Belgium trip.

As for your case, the macro will be triggered only for changes in column A. And secondly, you need to enable the macros while starting the workbook (provided the security is medium). If the security is low, then the macros will start automatically, and if high, the macros will be disabled automatically.

Another reason why the macro might not work is probably because the macro given by Bob did not complete its run (probably due to exiting pre-maturely) and hence the EnableEvents was not turned back to true.


Mangesh
Reply With Quote
  #8  
Old 06-23-2005, 04:27 AM
daolb daolb is offline
Registered User
 
Join Date: 21 Jun 2005
Posts: 12
daolb is becoming part of the community
additional function

one additional function I need. In the first question I spoke about a status column. And every time I would change the status, the date and time had to be written down in column 2 and 3.

One problem occur. Its not just one column but ranges in one column.

for example

A1:A10
A20:A30
A40:A50

when I change the value of cell A11, no date or time may me filled in in column 2 and 3.

greetz, david
Reply With Quote
  #9  
Old 06-23-2005, 04:43 AM
mangesh_yadav mangesh_yadav is offline
Forum Guru
 
Join Date: 10 Jun 2004
Location: India
Posts: 1,068
mangesh_yadav is becoming part of the community
Private Sub Worksheet_Change(ByVal Target As Range)

On Error GoTo ws_exit:
Application.EnableEvents = False
If Not Intersect(Target, Me.Range("A:A")) Is Nothing Then
if ((target.row >=1 and target.row<=10) or _
(target.row >=20 and target.row<=30) or _
(target.row >=40 and target.row<=50) ) then
With Target
.Offset(0, 1).Value = Format(Date, "dd mmm yyyy")
.Offset(0, 2).Value = Format(Time, "h")
.Offset(0, 3).Value = .Offset(0, 3).Value + 1 ' this is new line
End With
End If
End if
ws_exit:
Application.EnableEvents = True
End Sub
Reply With Quote


Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Forum Jump