Hi,
No worries. I'll answer your question anyway, just so it's on the record.
Using our function the answer would be essentially the same. The function takes two parameters, location and shape. Ignoring location for the moment, the shape represents the inverse rate, so the shape parameter in your case would be 10/22, or the inverse of the rate (22/10).
This would look like
=ExponentialValue( 0, 10/22 )
The mean of that should be the same as the shape, or (10/22) = .4545.
Location is a shift applied after the distribution, so if location is zero, then it has no effect. If you have a location of 1, then
=ExponentialValue( 1, 10/22 )
would have a mean of 1.4545. Internally, the function looks like
location - shape * log( uniform( 0, 1 ) )
As long as you're using Excel 2003 or higher, your function should be fine. If you're using an earlier version of Excel, then I wouldn't recommend using RAND(), because it had a really weak generator algorithm.
I hope that's helpful.
Alex Edwards
alex@riskamp.com