I am tryign to get the % of these totals and it wont work, it wont * the number by 100.
It gives me the percentage as a whole number 7.4521574 etc, but now i want to turn it into a percentage .74521574 etc.
VB Code:
Option Explicit Dim num1 As Double Dim num2 As Double Dim answer1 As Double ' This calculates the tax credit on parts Private Sub Command1_Click() Text3.Text = Text1.Text / Text2.Text * 100 ' this is where it wont do the final part of the calcuation End Sub





Reply With Quote