Hi I am trying to figure out how to make a VBA routine converter I have the form functional but I am trying to figure out the correct syntax. In my form I am trying to figure out how to convert %grade Slope ie; 4/100 (4%) to Angle Degrees 2.2906100. To get the Angle Degrees you are using ARCTANGENT ..04ATAN = 2.2906100 so in my command button Private Sub CommandButton1_Click() If TextBox1.Text = "" Then TextBox1.Text = TextBox2.Text * 1.0936 Else TextBox2.Text = TextBox1.Text * 0.9144 End If End Sub (the * 1.0936 and * 0.9144 is my example for converting Imperial/Metric for Yards) Thanks for the help!