J
JT
how do i determine how many items are in an array? the following code
creates an array of values each time a space is found in a name field. the
problem is that sometimes names have middle initials and sometimes they do
not. so i want to determine how many items exist in this array created by
the split BEFORE assigning values:
name_of_customer = Split(customer_name," ", -1, 1)
first_name = name_of_customer(0)
middle_initial = name_of_customer(1)
thanks much
jt
creates an array of values each time a space is found in a name field. the
problem is that sometimes names have middle initials and sometimes they do
not. so i want to determine how many items exist in this array created by
the split BEFORE assigning values:
name_of_customer = Split(customer_name," ", -1, 1)
first_name = name_of_customer(0)
middle_initial = name_of_customer(1)
thanks much
jt