C
Chuck216
Hi
I have 14 unbound text boxes on a report that calculate a percentage based
on 2 set of bound text boxes these unbound boxes do not always have something
in them (only if wait time is >=15).
If Me.Wait12_1 >= 15 Then
Me.Text194 = [Hour12-1] / [THC]
Else
Me.Text194 = ""
End If
It’s the same code for each of the 14 unbound boxes just the numbers are
changed. This is done in the Format Detail event of the report.
My question is I would like to have another text box that would give me an
average of these 14, I don’t want empty boxes included in the average.
Any help with this is greatly appreciated
Chuck
I have 14 unbound text boxes on a report that calculate a percentage based
on 2 set of bound text boxes these unbound boxes do not always have something
in them (only if wait time is >=15).
If Me.Wait12_1 >= 15 Then
Me.Text194 = [Hour12-1] / [THC]
Else
Me.Text194 = ""
End If
It’s the same code for each of the 14 unbound boxes just the numbers are
changed. This is done in the Format Detail event of the report.
My question is I would like to have another text box that would give me an
average of these 14, I don’t want empty boxes included in the average.
Any help with this is greatly appreciated
Chuck