LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 16
Default Strange looping in User-Defined function (Excel XP)

Hi,

I am having a strange problem with this user-defined function. I have only
one cell in my excel file that references this function.

If I follow the function with the debugger, I observe the following strange
behavior:

1. it executes as expected and gets to the last line.

2. Then, instead of exiting, it goes back to the first line and executes
again

3. Then it goes to the first executable line once more instead of exiting,
executes part of the way, then exits abruptly (not sure on which line), and
displays a #VALUE! in the worksheet.

Why is it looping in such a strange way? Any suggestions?

I attach the code, in case I am missing something obvious.

Thanks,

Gabriel

Public Function DiscLifetimeLoss(years As Double, discRate As Double,
stormLosses As Range, StormRates As Range) As Variant
'
' New, faster version: simulates by storm, not by year
'
' years: design life (e.g., 50)
'
' discRate: annual discount rate
'
' stormLosses: range containing storm losses by storm (typically 162
storms)
'
' StormRates: range containing storm annual occurrence rate by storm
(typically 162 storms)
'
' Calls user-defined random-number generators PoissonRand and Random
'
'calculates one realization discounted lifetime loss from all discrete
storms
'storm information give as arrays of losses and their annual rates
'
Dim iyr As Integer
Dim istrm, nstorms As Integer
Dim i, n_per_life As Integer
Dim discount_fctr As Double
Dim sum As Double
Dim loss, time_strm As Double
Dim r As Single
'''''''''''''''''''''''''''''''''''''''''''''''''' '''
nstorms = stormLosses.Count ' number of storms considered in analysis
'
sum = 0#
For istrm = 1 To nstorms
loss = stormLosses(istrm)
'simulate possible occurrences of each storm capable of losses
'during lieftime
If (loss 0#) Then
'simulate number of times this storm uccurs during life time
n_per_life = PoissonRand(StormRates(istrm) * years)
'for each occurrence, we need to simulate the occurrence time (uniform
between 0 and years)
For i = 1 To n_per_life
time_strm = years * Random()
disc_fctr = (1 + discRate) ^ (-time_strm)
sum = sum + disc_fctr * loss
Next i
End If
Next istrm
DiscLifetimeLoss = sum

End Function


 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel - User Defined Function Error: This function takes no argume BruceInCalgary Excel Programming 3 August 23rd 06 08:53 PM
Calling Excel user defined function from C# Stanley Excel Programming 0 June 26th 06 02:16 PM
Looping through a user defined type? plh Excel Programming 2 April 27th 06 05:38 PM
How can I create a user defined function in excel? Martinj Excel Discussion (Misc queries) 4 August 20th 05 06:11 PM
How to create User Defined function in Excel Johnny Ko Excel Programming 2 December 5th 03 09:09 AM


All times are GMT +1. The time now is 03:25 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"