Hallo I,m developing a debt calculation program 'my problem is when i have to calculate the months to pay back the debt it comes to 28.04 and i have to get it to 29 can some one pls help me out. Thank you in advance
my code looks like this:
Dim b, SubMtP As Integer
Dim outsUm, si
outsUm = TextBox1.Text
SubMtP = Format(Val(TextBox1.Text) / Val(TextBox2.Text), "0.00")
Math.Round(SubMtP + 1)
TextBox5.Text = Format(Val(TextBox4.Text) / 12, "0.00")
For i As Integer = 1 To SubMtP