N
NeonSky via AccessMonster.com
Hello,
I have a rather straightforward question for your consideration.
My source table is as follows.....
FieldA FieldB
Joe 23, 45
Joe 42, 65, 504
What I would like my output to perform is as follows....where field C is a
count of the number of strings in FeldB
FieldA FieldB FieldC
Joe 23, 45 2
Joe 42, 65, 504 3
My source data does indeed include commas in the field, and the values are
distinct. I understand this is poor index structure though these outputs are
specific to a process that references properly indexed data.
Would anyone know how to set up a loop/counter that scans a field for an
occurance of a comma, counts these occurances, then when it is all said and
done adds +1 to the total. Then finnaly generates these counts to the proper
field (the field that is to store the count does not exist in the source data
table).
Thank you!
I have a rather straightforward question for your consideration.
My source table is as follows.....
FieldA FieldB
Joe 23, 45
Joe 42, 65, 504
What I would like my output to perform is as follows....where field C is a
count of the number of strings in FeldB
FieldA FieldB FieldC
Joe 23, 45 2
Joe 42, 65, 504 3
My source data does indeed include commas in the field, and the values are
distinct. I understand this is poor index structure though these outputs are
specific to a process that references properly indexed data.
Would anyone know how to set up a loop/counter that scans a field for an
occurance of a comma, counts these occurances, then when it is all said and
done adds +1 to the total. Then finnaly generates these counts to the proper
field (the field that is to store the count does not exist in the source data
table).
Thank you!