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 italo013
#46298
Boa tarde!

Pessoal, não entendo muito de VBA to apanhando e aprendendo. Eu queria fazer uma macro que se o valor que estiver na variável (estado_civil) for diferente de algum dos valores do Array, então ele seguiria o If. Segue o código que eu montei até agora.

i = 34
indice = Array(1, 2, 3, 4, 5, 6, 9)

For j = 1 To tamanho

If tp_vinculo(j) = 1 Or tp_vinculo(j) = 2 Or tp_vinculo(j) = 3 Or tp_vinculo(j) = 0 Or tp_vinculo(j) = "" Then

If estado_civil(j) <> indice Then
falta(i) = falta(i) + 1
Sheets("Crítica Ativos").Cells(10 + falta(i), 35) = matricula(j)
End If

End If

Next j
#46300
Tenta assim:
Código: Selecionar todos
Dim indice As String

indice = "1,2,3,4,5,6,9"

i = 34


For j = 1 To tamanho
    If tp_vinculo(j) = 1 Or tp_vinculo(j) = 2 Or tp_vinculo(j) = 3 Or tp_vinculo(j) = 0 Or tp_vinculo(j) = "" Then
        verifica = InStr(indice, estado_civil(j))
        If verifica Is Not Null Then
            falta(i) = falta(i) + 1
            Sheets("Crítica Ativos").Cells(10 + falta(i), 35) = matricula(j)
        End If
    
    End If
Next j
Por italo013
#46301
Não funcionou deu erro na parte If verifica Is Not Null Then
O que eu queria fazer é o seguinte, tem uma base de dados, na coluna 34 é o estado civil da pessoa e tem os estados que vai de 1 até 9, então se em alguma linha não tiver nenhum desses valores (1 até 9) ai ele dará continuidade ao If.
#46315
Se é só isso, modifique o primeiro If pra isso: (No seu código)

If tp_vinculo(j) = 1 Or tp_vinculo(j) = 2 Or tp_vinculo(j) = 3 Or tp_vinculo(j) = 0 Or tp_vinculo(j) = "" and estado_civil(j) >0 and estado_civil(j) <10 Then
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