pessoal, estou com problemas no código abaixo:
basicamente, a quinta coluna da planilha gru traz valores em moeda que podem ou não estar preenchidos entre as linhas 43 a 56.
porém, eu preciso dividir esses valores em 80% e 20% para jogar em outro lugar.
não consigo, porque sempre aparece tipos incompatíveis na linha que tento aplicar o calculo (taxa(y) = Worksheets("gru").Cells(x, 5).Value * 0.2)
Sub dividirValores_Taxa()
Dim principal(13) As Currency
Dim taxa(13) As Currency
For x = 43 To 56
If Worksheets("gru").Cells(x, 5) > 0 Then
y = 0
taxa(y) = Worksheets("gru").Cells(x, 5).Value * 0.2
' taxa(y) = Worksheets("gru").Cells(x, 5).Value / 10 * 2
principal(y) = Worksheets("gru").Cells(x, 5).Value - pss(y)
Debug.Print taxa(y)
Debug.Print principal(y)
y = y + 1
End If
Next x
End Sub
Postado : 19/06/2023 3:18 pm