EXPONDIST(x,y,cumulative)
EXPONDIST function returns the exponential distribution. If the cumulative boolean is false it will return:
y * exp (-y*x),
otherwise it will return
1 - exp (-y*x).
EXPONDIST(2,4,0) equals 0.001341851.
POISSON.