Hi,
Here's in essence what I want to do:
Say I have a text box with the following values in it:
NOTE: These values are item classifications
Math
Science
Math
Reading
Writing
Science
Math
Math
Writing
I want to compute how many total Math Values there are, how many total Science Values there are, etc....
So in this case, I want the finished product to look something like this:
Math (4)
Science (2)
Reading (1)
Writing (2)
How can this be done?
P.S. - The text box is just a text box with values in it. When an item is selected for the test, its Item Classification is transfered to a text box.
Here's the code that I use:
So the text box is just free standing and not linked to a table or a query.
Thank you
Here's in essence what I want to do:
Say I have a text box with the following values in it:
NOTE: These values are item classifications
Math
Science
Math
Reading
Writing
Science
Math
Math
Writing
I want to compute how many total Math Values there are, how many total Science Values there are, etc....
So in this case, I want the finished product to look something like this:
Math (4)
Science (2)
Reading (1)
Writing (2)
How can this be done?
P.S. - The text box is just a text box with values in it. When an item is selected for the test, its Item Classification is transfered to a text box.
Here's the code that I use:
Code:
txtTextBox=txtTextbox & vbcrlf & vbcrlf & txtItemClassification
So the text box is just free standing and not linked to a table or a query.
Thank you