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:
  1. Option Explicit
  2.  
  3. Dim num1 As Double
  4. Dim num2 As Double
  5. Dim answer1 As Double
  6.  
  7. ' This calculates the tax credit on parts
  8. Private Sub Command1_Click()
  9. Text3.Text = Text1.Text / Text2.Text * 100 ' this is where it wont do the final part of the calcuation
  10. End Sub