A
Ann
I am working on a report grouped by month for completed policies. I wrote
the following to create percents for STD and NSTD. This is the one for NSTD.
=Count(IIf([PolicyStandard] Like "NSTD" And
[Duration]<=13,0))/(Count(IIf([PolicyStandard] Like "NSTD",0)))
These work fine as long as every month has at least one completed policy for
STD and one for NSTD, but if there is only STD policies completed and no NSTD
policies completed I receive #Num! for the NSTD. I tried to use Nz but
couldn't figure out where to place it to get a 0% can anyone help me out?
Thanks in advance.
I also need to create these percents as a year-to-date percent on each group.
the following to create percents for STD and NSTD. This is the one for NSTD.
=Count(IIf([PolicyStandard] Like "NSTD" And
[Duration]<=13,0))/(Count(IIf([PolicyStandard] Like "NSTD",0)))
These work fine as long as every month has at least one completed policy for
STD and one for NSTD, but if there is only STD policies completed and no NSTD
policies completed I receive #Num! for the NSTD. I tried to use Nz but
couldn't figure out where to place it to get a 0% can anyone help me out?
Thanks in advance.
I also need to create these percents as a year-to-date percent on each group.