Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 16
Default Countnumberofdays while function = TRUE

Great, it works!
Thanks a lot!
Maarten

"Tom Ogilvy" wrote:

Public Function GrowDay(Wstart As Double, Wstop As Double, fTemp As Range)
Dim x As Long, Wold As Double, res As Double
x = 0
Wold = Wstart
Do
x = x + 1
res = Wold + _
(0.1 * Wold ^ (2 / 3) - 0.05 * Wold) * fTemp(x)
Wold = res
If x 30 Then
GrowDay = "at day 31, weight = " & res
Exit Function
End If
Loop While res <= Wstop
GrowDay = x
End Function

I have modified it to look ahead by day from the start cell you pass in for
ftemp. so the argument list remains the same.

--
Regards,
Tom Ogilvy


"Maarten" wrote in message
...
Hi Tom,

This already works fine! With Wstart = 0.0082 and Wstop = 0.1, the
simulation gives a correct result. But ...
The function takes for fTemp a constant (say A1 = 0.5), but the

temperature
changes throughout the year and so does fTemp. On day 1 fTemp = 0.30, on

day
2 fTemp = 0.31, etc.... So if it takes the animal 30 days to reach

0.1gram,
it is subject to fTemp ranging from 0.30 to 0.60 and not 30 times 0.50.
Is there a way to account for this changing fTemp?

Greets,
Maarten

"Tom Ogilvy" wrote:

Public Function GrowDay(Wstart As Double, Wstop As Double, fTemp As

Range)
Dim x As Long, Wold As Double, res As Double
x = 0
Wold = Wstart
Do
x = x + 1
res = Wold + _
(0.1 * Wold ^ (2 / 3) - 0.05 * Wold) * fTemp
Wold = res
If x 30 Then
GrowDay = "at day 31, weight = " & res
Exit Function
End If
Loop While res <= Wstop
GrowDay = x
End Function


Put this in a general module (in the VBE, Insert=Module). Then in b1

put
in

=GrowDay(8,10,A1)

You might need to check your formula (or my implementation of your

formula).
I put in a safety so it jumps out after 30 days

--
Regards,
Tom Ogilvy

"Maarten" wrote in message
...
How do I enter this in Excel? Is it possible to write a function with

it?
Something like (I don't know how I have to write a correct function):
Function GrowDay(Wstart, Wstop)
x = 1
x = 0
W = Wstart
Do
x = x + 1
res = W(x - 1) + _
(0.1 * W(x - 1) ^ (2 / 3) - 0.05 * W(x - 1)) * f(Temp)
Loop While res <= Wstop
End Function

Maarten

"Tom Ogilvy" wrote:

x = 1
x = 0
do
x = x + 1
res = W(x-1) + _
(0.1*W(x-1)^(2/3)-0.05*W(x-1))*f(Temp)
Loop while res <= 10

--
Regards,
Tom Ogilvy


"Maarten" wrote in message
...
But B doesn't contain the weights of the animals. The weights

should
be
calculated invisible, behind each cell in B.
B1 may only contain the number of days the animal needs to reach a
weight
of
10 grams, assuming that it enters the simulation on the day that
corresponds
to cell B1

B2 may only contain the number of days the animal needs to reach a
weight
of
10 grams, assuming that it enters the simulation on the day that
corresponds
to cell B2

B3 may only contain the number of days the animal needs to reach a
weight
of
10 grams, assuming that it enters the simulation on the day that
corresponds
to cell B3

etc...




"Tom Ogilvy" wrote:

If each row is a day, then it should be as simple as:
=countif(B:B,"<=10")

No macro required.

As a further example, If you want to count 10 and <=20

=Countif(B:B,"10")-Countif(B:B,"20")



--
Regards,
Tom Ogilvy










Reply
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
My IF function is saying something is false when it is true... dilbert16588 Excel Worksheet Functions 2 April 11th 08 07:00 AM
IF Function doesn't recognize TRUE AMY Z. Excel Worksheet Functions 6 October 24th 06 11:28 PM
Function to return True/False if all are validated as True by ISNU Tetsuya Oguma Excel Worksheet Functions 2 March 15th 06 10:28 AM
If Function true value in Red donnaK Excel Worksheet Functions 4 December 16th 04 06:55 PM
Why doesn't this function return TRUE? Daniel.M[_2_] Excel Programming 8 July 13th 03 10:06 PM


All times are GMT +1. The time now is 09:10 PM.

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"