bom dia pessoal, podem me ajudar nessa conta?
gostaria que : a fraçao 140-idade/txtCreatinina multiplique por 0,85
o resultado divide por texto83/72
Private Sub txtAUC_AfterUpdate()
If txtSexo = "M" Then
Me.txtTFG = (((140 - Idade) / txtCreatinina * 1)) / (Texto83 / 72)
Else
If txtSexo = "F" Then
Me.txtTFD = (((140 - Idade) / txtCreatinina) * 0,85)) / (Texto83 / 72)
End If
End If
End Sub
acho q assim esta corrreto
Me.txtTFG = (((140 - Idade) / (txtCreatinina)) * (1)) / (Texto83 / 72)
quando digito na txtCreatinina 0,5 nao calcula certo
gostaria que : a fraçao 140-idade/txtCreatinina multiplique por 0,85
o resultado divide por texto83/72
Private Sub txtAUC_AfterUpdate()
If txtSexo = "M" Then
Me.txtTFG = (((140 - Idade) / txtCreatinina * 1)) / (Texto83 / 72)
Else
If txtSexo = "F" Then
Me.txtTFD = (((140 - Idade) / txtCreatinina) * 0,85)) / (Texto83 / 72)
End If
End If
End Sub
acho q assim esta corrreto
Me.txtTFG = (((140 - Idade) / (txtCreatinina)) * (1)) / (Texto83 / 72)
quando digito na txtCreatinina 0,5 nao calcula certo
Última edição por Helden em 8/8/2021, 06:50, editado 1 vez(es)