Esse é meu código como está hoje:
Evento Change:
Sub Worksheet_Change(ByVal Target As Range)
linha = ActiveCell.Row - 1
If Target.Address = "$AY$" & linha Then 'Celula alterada na coluna AY
Enviar_email
End If
End Sub
Parte do código onde copio e colo a venda na planilha onde ativa o Worksheet_Change
...
Application.EnableEvents = True
Range("lincontrole").Copy Sheets("Controle").Cells(Rows.Count, 1).End(3)(2)
Cells(Rows.Count, 51).End(3).Select
'SendKeys "{F2}", True
'SendKeys "{ENTER}", True
Application.EnableEvents = False
...
Esses "sendkeys" foram uma tentativa de automatizar a ação que hoje faço manualmente após cada cadastro de venda, mas não funcionou
Postado : 16/10/2016 5:31 pm