Hi
I am using Crystal 9.0 reporting from an Access 2003 database.
I want to be able to graph a value, upper and lower confidence levels (at 95%). The formulae used in Excel:
UCL
LCL
C2=sum(observed incidences)
D2=sum(expected incidences)
Usually this would be graphed as "box and whisker" but that isn't an option in Crystal so is there a workaround? Thanks.
I am using Crystal 9.0 reporting from an Access 2003 database.
I want to be able to graph a value, upper and lower confidence levels (at 95%). The formulae used in Excel:
UCL
Code:
=C2/D2*(1-1/(9*C2)-1.96/(3*SQRT(C2)))^3*100
LCL
Code:
=(C2+1)/D2*(1-(1/(9*(C2+1)))+1.96/(3*SQRT(C2+1)))^3*100
C2=sum(observed incidences)
D2=sum(expected incidences)
Usually this would be graphed as "box and whisker" but that isn't an option in Crystal so is there a workaround? Thanks.