I have no experience writing VBA code but I can follow the logic.
Thank you for everyone's help in advance!
I found a VBA code that calculates the second highest value across a series of 10 fields (temp array and TWO sorts). It actually works great except if the first field is a zero or all fields contain zero.
Function Maximum (ParamArray FieldArray() As Variant)
' Declare the two local variables.
Dim I As Integer
Dim currentVal As Variant
Dim secondHighest As Variant
' Set the variable currentVal equal to the array of values.
currentVal = FieldArray (0)
' Cycle through each value from the row to find the largest.
Dim tmpArray
For I = 0 To UBound(FieldArray)
If FieldArray(I) > currentVal Then
currentVal = FieldArray(I)
End If
Next
tmpArray = Filter (FieldArray, currentVal, False, vbTextCompare)
'This will fill the tmpArray with all your array values EXCEPT the highest one.
secondHighest = tmpArray(0)
For I = 0 To UBound(tmpArray)
If tmpArray(I) > secondHighest Then
secondHighest = tmpArray(I)
End If
Next
' Return the maximum value found.
Maximum = secondHighest
' Expr1: Maximum ([nPP1CSF],[nPP2CSF],[nPP3CSF],[nPP4CSF],[nPP5CSF],[nPP6CSF],[nPP7CSF],[nPP8CSF],[nPP9CSF],[nPP0CSF])
End Function
Thank you for your prompt response! I now have the error "type mismatch". It occurs at line "If Not (Not tmpArray) Then"