stickleprojects Level: Moderator

 Registered: 09-09-2002 Posts: 978
|
Re: Need Help
Hi
From reading what you need to do and what you want help with, it looks like what you have is a hard-coded formula something like:
Public Function WhatYearWillItBe10Billion()
Dim yr As Integer
Dim amt As Double
Dim rate As Single
yr = 2002
amt = 6.2
rate = 1.2 / 100
Do While amt < 10
Debug.Print "In " & yr & " it will be " & amt
yr = yr + 1
amt = amt + (amt * rate)
Loop
WhatYearWillItBe10Billion = yr
End Function
|
You say you have spent a lot of time doing the above.
What problems specifically have you had?
____________________________
Build it better, faster, quicker, easier.. then fix it (non-offical MS mission statement)
|