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.
Perfect!! Thank you!!