Hello,
I have a combo box displaying plan numbers and i want to only display the elevation associated with that plan. So when the user selects the plan the other combo box will only show the elvations choices. No sure if i need to use a filter or a lookup.
Solved! Go to Solution.
I updated my answer. It seems we were both typing at the same time.
Filter('Plan and Elevation',Plan in ComboBox6.SelectedItems.Plan);
I would suggest using the FILTER function because it can return many values (i.e. elevations) as opposed to LOOKUP which can only return a single value. Put this ocde in the Items property of your combobox.
Filter(your_datasource_name,Plan in ComboBox1.SelectedItems.Plan)
My solution assumes your 1st combobox is storing the plan in a column called "Plan".
---
Please click "Accept as Solution" if my response helped to solve your issue so that others may find it more quickly. If your thought the post was helpful please give it a "Thumbs Up."
I updated my answer. It seems we were both typing at the same time.
Filter('Plan and Elevation',Plan in ComboBox6.SelectedItems.Plan);
User | Count |
---|---|
221 | |
98 | |
95 | |
55 | |
34 |
User | Count |
---|---|
273 | |
107 | |
105 | |
60 | |
60 |