Function PopulateFunctionTrackCombo()
Dim IntX As Integer
For IntX = IntX To 8
If Me("chkTrackable" + Format$(IntX)) = True Then
'----------Next line is where I need to combine the txt and integer--------------
strFunctionTrack = strFunctionTrack & ", " & Me("lblTrackable" + Format$(IntX))
End If
Next IntX
End Function