A
Andy
Hi;
The boss wants to "Cluster" products in a group or "Suite" meaning "Blouse,
Dress, Hat" = Woman's Outfit.
Have an Order/Sales dbase.
Main Form = Customer data, (Name, Address, Phone)
sfrmProductsBought = Category, (Auto, Clothing, Furniture), Sub-Category,
(Blouse, Dress, Hat), ProductName, (Blue Shirt, Green Shirt, Red Shirt)
The Category, Sub-Category and ProductName are "Drill Down" Combo Boxes.
For the "Drill Down" followed Microsoft's help: Seperate tbls for each
Combo Box with the tbl Primary Keys Data Type set as text. Then created a
main frm for Category, an sfrm for Sub-Category and an sfrm in
sfrmSub-Category for the individual Products. All of this works correctly.
When the ProductName is selected in the sfrmProductsBought the "After
Update" Event uses Me!s to enter the Description, Price Etc.
Example:
Me![txtProductDescription] = Me![cbxProductNameID].Column(1)
All of this works correctly.
The boss wants to "Cluster" products in a group or "Suite" meaning "Blouse,
Dress, Hat" = Woman's Outfit. Have seen this work in an accounting program.
At first simply added a "Grouped Products" Category to tblCategory that
won't work in this instance.
Then tried this:
Created tbls: GroupedCategory and GroupedProducts. (One To Many
Relationship)
The tblGroupedCategory contains the name of the Group, (Men's Outfit,
Woman's Outfit)
tblGroupedProducts contains the same fields as "sfrmProductsBought"
The sfrmGroupedProducts uses the same Drill Down method and it all works
correctly.
Added a Combo Box to sfrmProductsBought that displays the GroupCategory
Names. Its Row Source Type is "Table/Query" and its Row Source is
tblGroupedCategory.
Tried using a Row Source of tblGroupedCategory and tblGroupedProducts but
that shows the same Grouped Category multiple times, (One to Many).
Set the qry Properties to "Unique Records" and it still shows Grouped
Category multiple times.
Have searched and searched for an example of how to copy the data from the
Grouped Products Tables to the sfrmProductsBought and haven't found anything
that is even close.
Would someone be so kind to point me in the correction direction.
Thank You for taking the time to read this post.
Andy
The boss wants to "Cluster" products in a group or "Suite" meaning "Blouse,
Dress, Hat" = Woman's Outfit.
Have an Order/Sales dbase.
Main Form = Customer data, (Name, Address, Phone)
sfrmProductsBought = Category, (Auto, Clothing, Furniture), Sub-Category,
(Blouse, Dress, Hat), ProductName, (Blue Shirt, Green Shirt, Red Shirt)
The Category, Sub-Category and ProductName are "Drill Down" Combo Boxes.
For the "Drill Down" followed Microsoft's help: Seperate tbls for each
Combo Box with the tbl Primary Keys Data Type set as text. Then created a
main frm for Category, an sfrm for Sub-Category and an sfrm in
sfrmSub-Category for the individual Products. All of this works correctly.
When the ProductName is selected in the sfrmProductsBought the "After
Update" Event uses Me!s to enter the Description, Price Etc.
Example:
Me![txtProductDescription] = Me![cbxProductNameID].Column(1)
All of this works correctly.
The boss wants to "Cluster" products in a group or "Suite" meaning "Blouse,
Dress, Hat" = Woman's Outfit. Have seen this work in an accounting program.
At first simply added a "Grouped Products" Category to tblCategory that
won't work in this instance.
Then tried this:
Created tbls: GroupedCategory and GroupedProducts. (One To Many
Relationship)
The tblGroupedCategory contains the name of the Group, (Men's Outfit,
Woman's Outfit)
tblGroupedProducts contains the same fields as "sfrmProductsBought"
The sfrmGroupedProducts uses the same Drill Down method and it all works
correctly.
Added a Combo Box to sfrmProductsBought that displays the GroupCategory
Names. Its Row Source Type is "Table/Query" and its Row Source is
tblGroupedCategory.
Tried using a Row Source of tblGroupedCategory and tblGroupedProducts but
that shows the same Grouped Category multiple times, (One to Many).
Set the qry Properties to "Unique Records" and it still shows Grouped
Category multiple times.
Have searched and searched for an example of how to copy the data from the
Grouped Products Tables to the sfrmProductsBought and haven't found anything
that is even close.
Would someone be so kind to point me in the correction direction.
Thank You for taking the time to read this post.
Andy