SherryBerry
MIS
Hi, all. I've never done this before, but I cannot find the answer in google results as I have so many times before, so this is my last option. UPDATE: I've already posted this in another section of the site, but someone suggested I post here instead. Sorry about the duplicate posting.
I'm currently interning with a company who has hired me to help automate office processes centered around databases. So far, I've done things with access, excel, and VBA that I didn't even think was possible, but for some reason, I've now hit a brick wall.
The task seems deceptively simple: We are importing data from a project management database into access. Sometimes, fields such as project description or project title will have records that come in with spelling errors. Instead of meticulously reading these, or copying and pasting them into microsoft word one record at a time, what we would like to do is be able to cycle through the records belonging to a particular field and spellcheck them while they're in the table and then highlight the misspelled word in some way.
Right now, I have a solution that uses my own list of words and in a loop, compares the data in a single field such as recSet![Project Description] to the list of words. Unfortunately, my code considers all the data in the field one word, and obviously never finds a match, which is not sufficient. Another problem lies in the fact that this database usually has at least 3,000 records in it so the solution that I have right now, in addition to not working properly, is also very slow, which discourages me from trying to tweak it. Any advice whatsoever would be appreciated. Thanks in advance.
I'm currently interning with a company who has hired me to help automate office processes centered around databases. So far, I've done things with access, excel, and VBA that I didn't even think was possible, but for some reason, I've now hit a brick wall.
The task seems deceptively simple: We are importing data from a project management database into access. Sometimes, fields such as project description or project title will have records that come in with spelling errors. Instead of meticulously reading these, or copying and pasting them into microsoft word one record at a time, what we would like to do is be able to cycle through the records belonging to a particular field and spellcheck them while they're in the table and then highlight the misspelled word in some way.
Right now, I have a solution that uses my own list of words and in a loop, compares the data in a single field such as recSet![Project Description] to the list of words. Unfortunately, my code considers all the data in the field one word, and obviously never finds a match, which is not sufficient. Another problem lies in the fact that this database usually has at least 3,000 records in it so the solution that I have right now, in addition to not working properly, is also very slow, which discourages me from trying to tweak it. Any advice whatsoever would be appreciated. Thanks in advance.