Oct 05 2019 11:48 PM
Hi,
I want to 'Distinct' a lookup column from 'list2' in a list ('list1') form to avoid the repetitive data showing. I did this:
made a dropdown/combobox/datacardvalue and use the code below:
Distinct('list1',lookup column)
but nothing showed on the powerapps form of my list1.
Oct 06 2019 12:42 AM
nothings happend, actually I want to do it on list1 values to choose from not records.
Oct 06 2019 12:59 PM
@Soheilsd , try a combobox and set the items to Distinct('list1',ColumnNameHere). This will create a single column table and the only column will be "Result"
If that isn't clear, try adding a button and set the OnSelect property to ClearCollect(col_Test,Distinct('list1',ColumnNameHere)) . This will allow you to preview your col_Test under View-> Collections and will show you the first five rows of the collection.
Please post a screenshot if you're able and need further assistance. It will help immensely in understanding what you're seeing.