03Explorer
Technical User
I am working on a (supposed) simple project for my daughter. I am building a spelling test application. I have tables built and know the sql code and am aware of getting to the data with vba. But my concern is I don't want the information data coming back in the same order each time.
Objective is to enter the spelling word along with a sentance. Have code read data based on grade (I have two grade school kids), book and theme (which are all numbers) I use these to filter for current week spelling words. My filter would then give me the words for the specified period along with the sentance entered. Then I would have my child run a form that randomly chooses words with the grade, theme & book selected. The words would then be spoken to them, followed with the sentance spoken. I have the code in place to speak the words, but my kids know the words based on their placement in their spelling list, not actually the word.
Am I making something impossible for a personal goal to create this thing?
SO far I have two tables
TABLE1:
spellingWord (TEXT)
spellingSentance (TEXT)
gradeID (number)
bookID (number)
themeID (number)
TABLE2:
IntGrade (number)
intBook (number)
intTheme (number)
I am almost certain I don't need Table2, and I could do a self join, but I am still working on the structure idea also...
Objective is to enter the spelling word along with a sentance. Have code read data based on grade (I have two grade school kids), book and theme (which are all numbers) I use these to filter for current week spelling words. My filter would then give me the words for the specified period along with the sentance entered. Then I would have my child run a form that randomly chooses words with the grade, theme & book selected. The words would then be spoken to them, followed with the sentance spoken. I have the code in place to speak the words, but my kids know the words based on their placement in their spelling list, not actually the word.
Am I making something impossible for a personal goal to create this thing?
SO far I have two tables
TABLE1:
spellingWord (TEXT)
spellingSentance (TEXT)
gradeID (number)
bookID (number)
themeID (number)
TABLE2:
IntGrade (number)
intBook (number)
intTheme (number)
I am almost certain I don't need Table2, and I could do a self join, but I am still working on the structure idea also...