Hi All,
I have a question.
Let me first sketch the situation:
I have a collection named: Brand_Action, where users can pair an action to a brand.
| Brand | Action |
| Apple | Do this... |
| Apple | Do that... |
Now I have a dropdown with a few brands and I want to display all actions corresponding with that brand.
So if I select "Apple" as my brand I want to see a text displaying "Do this... & Do that..."
I got it to work only displaying the first value (So "Do this..."). I used this code:
LookUp(Brand_Action; Brand = Dropdown_Brand.Selected.Result;Action)
Can anyone help me?
Thanks in advance!