Can someone please support me if i want to make Enum list where it’s results are dependent on a previous Enum list, i have tried many things but it won’t work with me.
for example, if we have products where each product has many suppliers and the user can select multiple products in his request and also can select the suppliers, so i have enum list for products and when the user select his products, i need the second enum list which is for suppliers to be dependent on the products which were selected by the user.
when i try below expression in Data Validation the supplier enum list disappears and i don’t understand why?.
So how are you wanting Suppliers to be selected then; if they have even a single one of the selected products, or only if they have all of the selected products?
Conditionals in SELECT() statements will work exactly the same as in FILTER().
In other words, return the supplier if the number of common items between the selected list of products, and a suppliers list of products (count of intersect), is the same as the count of selected products.
Now i’m facing another issue, the input is Enum list so the values are stored in the worksheet in one cell separated with commas, and this breaks all links in the table.
@Steve yeah i got it now , the question didn’t sound right .
but if i want to take multiple inputs from user in same request specially in product, supplier scenario, is there a way to do it without breaking table links?.
if i make product request form view and enabled the user to multi select product and suppliers, now the table columns will be updated with the values separated by “,” when this happens it creates one row in the table and break the links happening between other tabels.
Ah, yes. If you want only one product and one supplier, you’ll have to either process the choices collected in the EnumList with actions to create the desired rows, or you’ll have to choose a different product and supplier input model, such as adding rows to a child table.
@Steve@Marc_Dillon , I’m sorry for this but i’m new in the community and a new user for appsheet and i’m trying to figure out things, i would really appreciate your support and guidance.
i don’t understand why below expression is not working i tested it and it returned all suppliers not the one that match the product.