SOLVED
Create a table of all possible values
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
aselameab
5 - Atom
‎12-18-2016
11:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
On the interface on the app I'm developing, a user selects:
Field name | Possible Values |
Customer Name | Only one selection allowed from a long list of possible values |
Product | Multi selection, 1+ |
Day of the week | Only two options, Weekday or Weekend |
An example of a selection might be:
Customer B |
Toys; Cars; Trucks; Boats; Planes |
Weekday |
Price |
Based on a user's selections, I want a table generated that provides the universe of possble options. So, in this example (with the above selections), I want this table to be generated:
Customer Name | Product | Day of Week | Price |
Customer B | Toy | Weekday | |
Customer B | Cars | Weekday | |
Customer B | Trucks | Weekday | |
Customer B | Boats | Weekday | |
Customer B | Planes | Weekday |
Solved! Go to Solution.
Labels:
- Labels:
- Preparation
- Transformation
2 REPLIES 2
Kanderson
10 - Fireball
‎12-18-2016
05:36 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
‎12-19-2016
01:43 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Perfect!! Thank you!!