two consecutive maros

P

puiuluipui

Hi, can this two macro codes work in the same sheet? Both codes are working
separately, but not together.

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address(False, False) = "B5" Then _
Range("C1").Value = IIf(IsEmpty(Target), "", "" &
UCase(Format(Date, "dddd dd.mm.yyyy")))

End Sub
--------------------------------------------------------------------------------
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
'when entering data in a cell in Col A
On Error GoTo enditall
Application.EnableEvents = False
If Target.Cells.Column = 1 And Target.Cells.Row >= 5 Then
N = Target.Row
If Me.Range("A" & N).Value <> "" Then
With Me.Range("B" & N)
If .Value = "" Then
..Value = Now
End If
End With
End If
End If
enditall:
Application.EnableEvents = True
End Sub


Thanks!
 
D

Daniel.C

Hi.
No you must only have one "Worksheet_Change" macro. Try :

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
'when entering data in a cell in Col A
On Error GoTo enditall
If Target.Address(False, False) = "B5" Then
Range("C1").Value = IIf(IsEmpty(Target), "", "" &
UCase(Format(Date, "dddd dd.mm.yyyy")))
ElseIf Target.Cells.Column = 1 And Target.Cells.Row >= 5 Then
Application.EnableEvents = False
N = Target.Row
If Me.Range("A" & N).Value <> "" Then
With Me.Range("B" & N)
If .Value = "" Then
..Value = Now
End If
End With
End If
Application.EnableEvents = True
End If
enditall:
End Sub

HTH
Daniel
 
P

puiuluipui

Its not working. I receive an error.
i have excel 2003. Maybe this is the problem?
Thanks!

"Daniel.C" a scris:
 
P

puiuluipui

Hi,
When the error message appear, the fifth line is blue:
Range("C1").Value = IIf(IsEmpty(Target), "", "" &
And after i click ok, the first line turn into yellow:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)

Thanks!

"Daniel.C" a scris:
 
D

Daniel.C

Right. The line was splitted by the news reader; the following must be
on the same line :
Range("C1").Value = IIf(IsEmpty(Target), "", "" &
UCase(Format(Date, "dddd dd.mm.yyyy")))
Daniel
 
P

puiuluipui

I have now, a new error, just like the first time, but now with blue (12
line) is :
...Value = Now

....and after i click ok, with yellow, i have (first line):
Private Sub Worksheet_Change(ByVal Target As Excel.Range)

Thanks!


"Daniel.C" a scris:
 
D

Daniel.C

I am sorry. I don't know why the code is altered; there is only one dot
:
..Value = Now
(read: dot value equal now)
for any further error, refer to your initial code.
Daniel
 
P

puiuluipui

Hi. Sorry for my late reply...it's working. i just had to replace "B5" with
"C5".
First code generate result in "B5" and the second one from "B5". But i had
to double click "B5" to make the second code to work. So, i replace the "B5"
with "C5", because my database allowed me to do that. And now it's working.
Thanks allot!

"Daniel.C" a scris:
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top