ARREDONDAR PARA CIMA
Como arredondar um valor para cima....
exemplo 2,01 = 3
2,28 = 3
1,24 = 2
14,28 = 15
exemplo 2,01 = 3
2,28 = 3
1,24 = 2
14,28 = 15
If Valor Mod 2 <> 0 Then
Valor = Int(Valor / 2) + 1
End If
segura Fox....
If key = 13 Then
v_1 = CSng(Text1.Text)
If Text1.Text < 1 Then: Text1.Text = 1
v_2 = Format(CDbl(Text1.Text), "##,########")
dif = v_1 - v_2
If dif > 0 Then
v_3 = v_2 + 1
Text2.Text = v_3
End If
If dif < 0 Then
v_3 = v_2
Text2.Text = v_3
End If
If dif = 0 Then
v_3 = v_2
Text2.Text = v_3
MsgBox "O resultado gerou um numero inteiro
Abraços..
If key = 13 Then
v_1 = CSng(Text1.Text)
If Text1.Text < 1 Then: Text1.Text = 1
v_2 = Format(CDbl(Text1.Text), "##,########")
dif = v_1 - v_2
If dif > 0 Then
v_3 = v_2 + 1
Text2.Text = v_3
End If
If dif < 0 Then
v_3 = v_2
Text2.Text = v_3
End If
If dif = 0 Then
v_3 = v_2
Text2.Text = v_3
MsgBox "O resultado gerou um numero inteiro
Abraços..
valeu leandro, obrigado ae...pela tentativa, mas a ideia do Idelvan deu mais certo...flws...
Tópico encerrado , respostas não são mais permitidas