I'm pretty new to Access, but it seems to me there should be a way to do something like this:
Obviously this isn't anywhere near to correct, but it should illustrate my goal. Essentially i want to run a function on a field of each record, for error checking, store and report the results.
Any advice is much appreciated!
P.S
I didn't do any lurking before posting here, so please be gentle if I am in the wrong forum or have broken any other rule, thanks.
Code:
Dim rec As Record
Dim tbl As Table
Set tbl = Access.GetTable ("Tablename")
Foreach rec In tbl
begin
if (!spellcheck(rec.TextField)) add_to_output(rec)
end
Obviously this isn't anywhere near to correct, but it should illustrate my goal. Essentially i want to run a function on a field of each record, for error checking, store and report the results.
Any advice is much appreciated!
P.S
I didn't do any lurking before posting here, so please be gentle if I am in the wrong forum or have broken any other rule, thanks.