I have a report with several unbound textboxes that perform calculations. Text92 provides the correct percentage until I get to a small number (i.e 1.13%, or 0.14%). The correct value should be 1.13% and I am getting 113.05%, or value should be 0.13% and I am getting 13.33%.
Im hoping that someone can see an obvious error, or make a recommendation?
Text80
Text85
WL
Text100
Text92
Many thanks as always.
Im hoping that someone can see an obvious error, or make a recommendation?
Text80
Code:
=nz([Sum Of TOTALDROP],0)
Text85
Code:
=nz([credit],0)-nz([fill],0)
WL
Code:
=nz([text85],0)+nz([text80],0)
Text100
Code:
=nz([text85],0)+nz([text80],0)
Text92
Code:
=IIf(([wl]=0),0,IIf(([text80]=0),0,([wl]/[text80])))
Many thanks as always.