I have a combobox that looks at SharePoint 'ListA' shows ColumnA & ColumnB is searchable on ColumnA
Under the combobox i have a number of textinputs in view displaymode that return other values from ListA based on selected item in combobox
Im trying to add another textinput that takes the selected item from combobox, look up ColumnA value in ListB ColumnC and returns ListB ColumnD
I can make this work with a lookup ....
LookUp(ListB, ColumnC = Combobox.Selected.ColumnA, ColumnD)
How ever ListA ColumnA value can appear in ListB ColumnC multiple times,
ListB ColumnD is a date and i need to return the most recent date when there are multiple matches in ColumnC
I understand i need to use Filter instead of lookup then sort the results but im struggling to make this work,
Can any one offer some direction?
Thank You
Solved! Go to Solution.
Hi @KeithD ,
You can do this with a LookUp
LookUp(
Sort(
ListB,
ColumnD,
Descending
),
ColumnC = Combobox.Selected.ColumnA
).ColumnD
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Hi @KeithD ,
You can do this with a LookUp
LookUp(
Sort(
ListB,
ColumnD,
Descending
),
ColumnC = Combobox.Selected.ColumnA
).ColumnD
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Worked perfectly thank you, should have thought of doing that my self.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
190 | |
52 | |
51 | |
36 | |
33 |
User | Count |
---|---|
268 | |
97 | |
83 | |
68 | |
68 |