Hey all,
Thanks so much for your help in the past. I really do try to search "help" for the answer to my problems but you seem to be the only ones that can help me.
I am still working on my home library. I have incorporated quite a few bells and whistles and am learning more every day. My major problem is that every time I add a "KooL" feature I think up several more to add.
Here is the current "shiney":
When reading a series I sometimes don't know/forget which title will come next in the series. Sure, I could pick up several books in the series and spend time flipping through pages but I wanted something a little quicker and easier. Sooooo...
I added two columns to my library database: "Series", and "Series Order". I have spent time flipping through pages (hopefully, one time only) and have set up these two columns with the name of the series and the order in which the title will fall in the series. The query for each series chooses the name of the series and the series order comes with it. All I have to do is sort and, Wham-Bama-Lama, I have what I want. No problem so far...
However, I ran into something that has me scratching my head. When a short story is part of a series I can't just write a query to include all of the books 'cause the short story will be left out. So I figured I could write a Union Query that would get what I wanted (The Series is "Jig the Goblin"):
SELECT Title, Series Order, “Book” AS Genre FROM [Books] WHERE [Series]=”Jig the Goblin”
UNION SELECT Title, Series Order, “Short Stories” FROM [Short Stories] WHERE [Series]=”Jig the Goblin”
Books = Table
Short Story = Table
Title = Column
Series = Column
Series Order = Column
I have spent hours trying to correct error messages that keep popping up. These messages include everything from "can't find" objects to syntax errors to "enter parameter value". (I hate that one!) I have removed brackets and put them somewhere else, removed quotes and put them somewhere else, checked spelling, removed and added punctuation, etc., etc., etc...
The thing that puzzles me the most is that I have written Union Queries before that are almost exactly like this one. I have never had these problems before and I am very frustrated.
Any help or advice would be greatly appreciated