I am trying to create a product list using Google Sheets. Each type of product has a number of attributes (or variations), that are combined together to create a single product.
For instance, there is
- diameter: 1/4 inch, 1/2 inch, 3/4 inch, etc.
- length: 1/2 inch, 1 inch, 1 1/2 inch, etc
- Material: Steel, Stainless Steel
- Etc.
A particular product is a particular combination of these variations. So, for example:
- 1/4 inch X 1/2 Inch Steel Carriage Bolt
- 1/4 inch X 1 Inch Steel Carriage Bolt
- 1/4 Inch X 1 1/2 Inch Steel Carriage Bolt
- Etc.
What I want to do is create a number of columns just with the attributes. So a Diameter Column, a Length Column, Material Column, etc.
I then want to create a new sheet by combining these various columns together into all of the possible combinations.
Is this possible? If so, how?
Thanks.
NOTE: I do NOT currently know how to use the Google Sheets API. If need be, I can learn (or hire a developer). But, if it is possible to do this without any coding, that would be preferable (for now, at least).
Clarification
Here is what I mean by creating a number of columns just with the attributes
.
Column A . Column B . Column C
Diameter . Length . Material
1/4 . 1/2 . Steel
1/2 . 1 . Stainless Steel
3/4 . 1 1/2
1 . 2
Etc. Etc.