Olá, meus amigos.
Gostaria de receber a ajuda valiosa de vocês, por favor!
Criei um userform para cadastro de aulas (AULAS), onde o botão pesquisa me busca o nome de um professor em determinada tabela com algumas fórmulas básicas para cálculo de honorários.
Nesta tabela há células específicas para cada professor (aulas lecionadas, turma, etc.).
Criei um botão salvar, no intuito de, usando a variável IF, ao buscar o nome do professor, esses dados caíssem nas células específicas de cada professor.
A pane: tentei usar o código abaixo, mas os dados não são salvos:
Private Sub BOTAO_SALVAR_Click()
totalregistro = Worksheets("aulas").UsedRange.Rows.Count + 1
If CAIXA_NOME = ("A38") Then
With Worksheets("aulas")
.Cells(totalregistro, "a3") = CAIXA_TURMA.Value
.Cells(totalregistro, "b3") = CAIXA_TURNO.Value
.Cells(totalregistro, "c3") = CAIXA_MES.Value
.Cells(totalregistro, "d3") = CAIXA_DIA.Value
.Cells(totalregistro, "e3") = CAIXA_QUANTIDADE.Value
.Cells(totalregistro, "f3") = CAIXA_ADIANTAMENTO.Value
.Cells(totalregistro, "g3") = CAIXA_DATA.Value
If CAIXA_NOME = ("A39) then
With Worksheets("aulas")
.Cells(totalregistro, "s3") = CAIXA_TURMA.Value
.Cells(totalregistro, "s3") = CAIXA_TURNO.Value
.Cells(totalregistro, "s3") = CAIXA_MES.Value
.Cells(totalregistro, "s3") = CAIXA_DIA.Value
.Cells(totalregistro, "s3") = CAIXA_QUANTIDADE.Value
.Cells(totalregistro, "s3") = CAIXA_ADIANTAMENTO.Value
.Cells(totalregistro, "s3") = CAIXA_DATA.Value
E ASSIM PARA CADA PROFESSOR...
End With
MsgBox "Gravado com sucesso."
Podem me ajudar? Valeu!
Ricardo
Postado : 18/01/2014 9:17 pm