Bom dia, vonzuben.
Testei o código do JValq e fiz as seguintes trocas:
De
Range("I4").Value
Para
Range("I7").Value
De
UltCel = Cells(Rows.Count, 10).End(xlUp).Address
Para
UltCel = Cells(Rows.Count, 9).End(xlUp).Address
O código todo ficou assim:
Private Sub Worksheet_Change(ByVal Target As Range)
If Range("I7").Value < 0 Then
OutPut = MsgBox("Seu saldo é insuficiente !", vbCritical, "Tabela - Saldo")
UltCel = Cells(Rows.Count, 9).End(xlUp).Address
Range(UltCel).ClearContents
Exit Sub
End If
End Sub
Aqui funcionou belezinha ... Testa ai e nos de um retorno.
Se a resposta foi útil! Clique na mãozinha ao lado do botão Citar.
Sua dúvida foi respondida? Marque como RESOLVIDO em seus tópicos, usando o botão com marca verde.
Postado : 07/04/2016 7:04 am