AlanJordan
Programmer
Can anyone explain to me why the code that specifically creates a variable for each of the items properly adds data, but the commented out code does not?
I think it has to do with coercion of the data type, but I would expect that converting the contents of each of text boxes to a double would achieve the same purpose.
My guess is that things are getting thrown off when a text box is empty, and that Access just can convert it unless it is stuffed into a variable.
Thanks, in advance, Alan
I think it has to do with coercion of the data type, but I would expect that converting the contents of each of text boxes to a double would achieve the same purpose.
My guess is that things are getting thrown off when a text box is empty, and that Access just can convert it unless it is stuffed into a variable.
Thanks, in advance, Alan
Code:
Function TotalPayableHours(InArray As Variant) As Double
On Error GoTo errTPH
Dim dbl1 As Double
Dim dbl2 As Double
Dim dbl3 As Double
Dim dbl4 As Double
Dim dbl5 As Double
Dim dbl6 As Double
Dim dbl7 As Double
Dim dbl0 As Double
Dim dblTotal As Double
dbl1 = InArray(1, 4)
dbl2 = InArray(2, 4)
dbl3 = InArray(3, 4)
dbl4 = InArray(4, 4)
dbl5 = InArray(5, 4)
dbl6 = InArray(6, 4)
dbl0 = InArray(0, 4)
dblTotal = dbl1 + dbl2 + dbl3 + dbl4 + dbl5 + dbl6 + dbl0
TotalPayableHours = dblTotal
[COLOR=green] 'TotalPayableHours = CDbl(InArray(1, 4)) + CDbl(InArray(2, 4)) + CDbl(InArray(3, 4)) + CDbl(InArray(4, 4)) & _
CDbl(InArray(5, 4)) + CDbl(InArray(6, 4)) + CDbl(InArray(0, 4))[/Color Green]
With Me!txtTotPayHrs
.Value = TotalPayableHours
.Format = "Fixed"
.DecimalPlaces = 2
End With
Exit Function
errTPH:
ErrBox "The problem originated in TotalPayableHours in frmTimecard."
End Function