Can I do this WITHOUT VBA??
As soon as I can figure out what you are trying get with that. Is it number
of periods to pay back?
--
-John
Please rate when your question is answered to help us and others know what
is helpful.
"Titanus" wrote:
Can anyone tell me, since I'm a VBA-virgin, if this routine can be
performed (and how) using just a regular Excel spreadsheet? Thanks so
much!
Sub titanus()
Dim interest(50)
Period = 0
valu = 0
For i = 1 To 50
interest(i) = 5
Next
For Count = 1 To 50
valu = valu + interest(Count)
If valu 100 And Period = 0 Then
Period = Count
End If
Next
End Sub
|