March 1, 200124 yr My script is complicated because this test doesn't seem to work: IsEmpty( Status(CurrentFieldName) ) Am I asking too much?!
March 1, 200124 yr Author Except I want to know if the field that the cursor is currently in is empty. I don't want to hard-code the field name. I want to use Status(currentfieldname) to get the name then use the result to see if the field is empty by using the isEmpty() function. It doesn't seem to work that way and I must create a lot more code and actually name each possible field.
March 1, 200124 yr quote: Originally posted by sprynmd: Except I want to know if the field that the cursor is currently in is empty. I don't want to hard-code the field name. I want to use Status(currentfieldname) to get the name then use the result to see if the field is empty by using the isEmpty() function. It doesn't seem to work that way and I must create a lot more code and actually name each possible field. Status ( CurrentFieldName ) will simply give you the name of the field and will never be empty. There is no way to feed a variable field reference to any function. You can script a checking routine where it check to see which field you are in and then checks that field for its contents, but this requires you to program all possibilities beforehand. ------------------ =-=-=-=-=-=-=-=-=-=-=-=-= Kurt Knippel Consultant Database Resources mailto:[email protected] http://www.database-resources.com =-=-=-=-=-=-=-=-=-=-=-=-=
March 2, 200124 yr Author Yep - that's the way I did it. Just wanted to make sure I wasn't missing an easier way. Thanks!
Create an account or sign in to comment