Este fórum está sendo desativado

Depois de 9 anos, este fórum será desativado. Mas calma.... estamos migrando para uma comunidade no DISCORD. Junte-se a nós.

ENTRAR PARA DISCORD

Tópicos relacionados a códigos VBA, gravação de macros, etc.
Por KauePeruzzi
#52020
OLÁ, ESTOU DESENVOLVENDO UMA PLANILHA PARA CONTROLE DE ENTRADA E SAÍDA DE ESTOQUE, ESTOU UTILIZANDO O CÓDIGO ABAIXO:

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$C$6:$C$83" Then
If IsNumeric(Target) Then
Target.Offset(0, 1) = Target.Offset(0, 1) + Target
End If
End If
End Sub

MINHA NECESSIDADE:
QUE OS VALORES DIGITADOS NA COLUNA "C" SEJA SOMADO NA RESPECTIVA CÉLULA DA FRENTE NA COLUNA "D"

PORÉM, SÓ FUNCIONA PARA UMA CÉLULA, E NECESSITO QUE FUNCIONE DA C3 ATÉ C83, JÁ TENTEI ALGUMAS MUDANÇAS, PORÉM NÃO OBTIVE SUCESSO.

AGRADEÇO A ATENÇÃO.
Por osvaldomp
#52027
Experimente:
Código: Selecionar todos
Private Sub Worksheet_Change(ByVal Target As Range)
 If Intersect(Target, [C6:C83]) Is Nothing Then Exit Sub
 On Error Resume Next
 Target.Offset(0, 1).Value = Target.Offset(0, 1).Value + Target.Value
End Sub
long long title how many chars? lets see 123 ok more? yes 60

We have created lots of YouTube videos just so you can achieve [...]

Another post test yes yes yes or no, maybe ni? :-/

The best flat phpBB theme around. Period. Fine craftmanship and [...]

Do you need a super MOD? Well here it is. chew on this

All you need is right here. Content tag, SEO, listing, Pizza and spaghetti [...]

Lasagna on me this time ok? I got plenty of cash

this should be fantastic. but what about links,images, bbcodes etc etc? [...]

Estamos migrando para uma comunidade no Discord