Hi@HubSteel,
Based on the needs you mentioned, you want to return the price value based on the dropdown selected from the vendor.
Could you please share more about “return 3 or 4 values for each vendor”, every vendor has only one price which can not return 3 or 4 values.
If you want to have a field below and says ”price” when picking from vendor dropdown, you can add a label and set Text property as below:
"price"
I have a test on my side, please take a try as below:
- Add a dropdown, set the Items property as
Distinct(Table,vendor)
- set the OnChange property as
UpdateContext({Temp:LookUp(Table1,vendor=dropdown1.Selected.Result)})
- Add a TextInput, set the Default property as
Temp.price
Best Regards,
Qi