Hi Everyone,
I’m not sure if this is the best way to approach this, but let me try to explain the situation:
productid, productname, productseasoning
1 , cashew , salted
2 , cashew , smokehouse
3 , almonds , salted
4 , almonds , smokehouse
This list is bigger, but in this example I would get 4 choices if I reference to productid.
What I would like is to have a choice between cashew or almonds and than another choice between salted or smokehouse. By using valid_if I do get the choices, but that does not work as a reference. Is there a way to reference to a certain product id without having to pick between a list of of “duplicates”, but instead having two narrowed down choices?
Solved! Go to Solution.
Hi @Djigi
Not sure what you need, but this is probably barrier language for me.
FILTER(“Production Products”,
AND(
[Product ingredient] = [_THISROW].[Product ingredient],
[Product seasoning] = [_THISROW].[Product seasoning]
)
)
ANY(
FILTER(“Production Products”,
AND(
[Product ingredient] = [_THISROW].[Product ingredient],
[Product seasoning] = [_THISROW].[Product seasoning]
)
)
)
Let us know if that works for you
User | Count |
---|---|
36 | |
8 | |
3 | |
2 | |
2 |