I have sort of a tricky question, that I'm guessing will require a clever work-around that I can't think of. The actual substance is confusing enough, so I'll use an anologous type of example.
Suppose I am keeping track of the different colors of popsicles offered by different brands. The brand name (ie Good Humor, Rising Star, Klondike, Dreamsicle, etc) is serving as the primary key. Each brand may have up to 3 colors, but as few as zero. I know the table isn't normalized, but here's what the table basically looks like:
Brand Name Color 1 Color 2 Color 3
Good Humor red blue orange
Rising Star green red yellow
Klondike
Dreamsicle green
Notice that they may have a different number of popsicles offered, and also that while Rising star and Good Humor may both offer red popsicles, it was arbitrarily assigned that "red" was entered into Good Humor as Popsicle 1 and was entered as Popsicle 2 for Rising Star.
Now, I'm trying to make a report that is either sorted or grouped (it doesn't really matter, though grouped would be better) by Popsicle Color. What I've done is to put the controls of Popsicle Color 1, 2, and 3 all in a column on my report, so when you view it in report-view, it looks as if they're all part of the same control. The only problem, it alphabetizes by color within each control (Color 1, Color 2, and Color 3) so it would go Green, Red, [all of the colors of "Color 1"], blue, red, [then alphabetized by all of the colors within "Color 2"], orange, yellow [those of "Color 3"].
Is there a way to put Color 1, 2, and 3 all into one column, and have that column be ordered aplphabetically? Or, is there a way to alphabetize by 3 columns? Similrarly, if I wanted to group by color, I can't group by Color 1, 2, and 3--all as part of the same grouping level--I must only group by Color 1, Color 2, or Color 3.
I'm not sure if this makes ANY sense, but please don't hesitate to ask questions and I appreciate any help you might be able to offer.
I'm very lost.
Suppose I am keeping track of the different colors of popsicles offered by different brands. The brand name (ie Good Humor, Rising Star, Klondike, Dreamsicle, etc) is serving as the primary key. Each brand may have up to 3 colors, but as few as zero. I know the table isn't normalized, but here's what the table basically looks like:
Brand Name Color 1 Color 2 Color 3
Good Humor red blue orange
Rising Star green red yellow
Klondike
Dreamsicle green
Notice that they may have a different number of popsicles offered, and also that while Rising star and Good Humor may both offer red popsicles, it was arbitrarily assigned that "red" was entered into Good Humor as Popsicle 1 and was entered as Popsicle 2 for Rising Star.
Now, I'm trying to make a report that is either sorted or grouped (it doesn't really matter, though grouped would be better) by Popsicle Color. What I've done is to put the controls of Popsicle Color 1, 2, and 3 all in a column on my report, so when you view it in report-view, it looks as if they're all part of the same control. The only problem, it alphabetizes by color within each control (Color 1, Color 2, and Color 3) so it would go Green, Red, [all of the colors of "Color 1"], blue, red, [then alphabetized by all of the colors within "Color 2"], orange, yellow [those of "Color 3"].
Is there a way to put Color 1, 2, and 3 all into one column, and have that column be ordered aplphabetically? Or, is there a way to alphabetize by 3 columns? Similrarly, if I wanted to group by color, I can't group by Color 1, 2, and 3--all as part of the same grouping level--I must only group by Color 1, Color 2, or Color 3.
I'm not sure if this makes ANY sense, but please don't hesitate to ask questions and I appreciate any help you might be able to offer.
I'm very lost.