no vb do excel este script funciona SOMENTE quando eu altero a celula diretamente mas não INDIRETAMENTE:
as ceululas C17 e D17 contem "SE(x>0;1;0)", por exemplo, que é como consequencia modificado pelo argumento.
grato.
Private Sub Worksheet_Change(ByVal faixa As Range)
If Not Intersect(faixa, Range("c17:c17")) Is Nothing Then
If faixa.Offset(0, 0).Value > 0 Then
Application.EnableEvents = False
MsgBox "celula C17"
Application.EnableEvents = True
End If
End If
If Not Intersect(faixa, Range("d17:d17")) Is Nothing Then
If faixa.Offset(0, 0).Value > 0 Then
Application.EnableEvents = False
MsgBox "celula D17"
Application.EnableEvents = True
End If
End If
End Sub
Question
Rhaone
por favor, alguém pode me ajudar a resolver isso?
no vb do excel este script funciona SOMENTE quando eu altero a celula diretamente mas não INDIRETAMENTE:
as ceululas C17 e D17 contem "SE(x>0;1;0)", por exemplo, que é como consequencia modificado pelo argumento.
grato.
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.