I have a simple (or it seems it should be) problem. I have
a table named "Input_data" with a field named "Profiles_1".
I need to know the length of the data in this field for
each record in the table. How can I do this???
Thanks
OK, I see how that would work. But let me change the scenerio a bit. Let's say that I need to find the length of the data in "Profiles_1" and if it is greater than X then do this, otherwise do this. Then go to the next record and do the same until the end of the records. How would I do that?
Thanks for your help.
dim mydb as database
set mydb = currentdb
dim rst as database
set rst= mydb.opendatabase("SELECT Len([Profiles_1]) AS lengt FROM Input_data"
do while not rst.eof
Select Case rst!lengt
Case 1
do something
Case 2
do somethingelse
Case ...
..........
End Select
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.