I have SharePoint lookup field with duplicate values, on the powerappform how to remove the duplicate values... Distinct function not working
Solved! Go to Solution.
@colbyc ,
Something like
Distinct(
Filter(
List,
MatchingColumn=FirstDropDown.Selected.Result
),
ColumnName
).Result
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.
Try
Distinct (List,ColumnName.Value)
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
Distinct is not working binding empty values
Distinct(
Filter(
List,
!IsBlank(ColumnName)
).ColumnName,
ColumnName
)
Hi @SharePointDev12 ,
Just checking if you got the result you were looking for on this thread. Happy to help further if not.
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.
Hey @WarrenBelz kind of an extension of above question - once the user selects the column1 distinct value, if I wanted to add a second lookup column2 that pulls distinct values from lookup table where column1 matches, how would I do that?
@colbyc ,
Something like
Distinct(
Filter(
List,
MatchingColumn=FirstDropDown.Selected.Result
),
ColumnName
).Result
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.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
User | Count |
---|---|
200 | |
99 | |
59 | |
58 | |
53 |
User | Count |
---|---|
257 | |
161 | |
88 | |
79 | |
69 |