I have a little math issue I have stumbling around on. Hoping someone can help with it.
label3.text
needs to be textbox1.text * 100
and that product needs to be divided by the quotient of (1000000/textbox7.text)
`label3.Text = (Convert.ToDouble(textBox1.Text) * 100 / (1000000 / (textBox7.Text).ToString("N3"));`