C
Chris Nebinger
There are many different ways to do this. One of them is:
Public Function CountCommas(strInput As String) As Integer
Dim Values() As String
Values = Split(strInput, ",")
CountCommas = UBound(Values)
End Function
Chris Nebinger
expression to return a number plus one.
Public Function CountCommas(strInput As String) As Integer
Dim Values() As String
Values = Split(strInput, ",")
CountCommas = UBound(Values)
End Function
Chris Nebinger
number of commas in a text field? I would like the-----Original Message-----
Can you help with the Access expression for counting the
expression to return a number plus one.