Hi All,
I have create a collection which is capturing a list distinct list of Descriptions(original list is over 2000 records and includes lots of duplicates). I am using the below
ClearCollect(Desc,{Result: "All"},Distinct('Part List',Description)). I have placed this in a Combobox, so I can search for a record.
When I play the app, all I have in the list is the word "All" and lots of blank lines. Any ideas as to where I am going wrong?
Thanks in Advance
No worries it is now working. Thank you
Thank you for the quick reply. I have changed it to Value in the collection. In the Combobox it is showing an error.
Hi @Skybluekid ,
Please try:
ClearCollect(Desc,{Value: "All"},Distinct('Part List',Description))
Best Regards,
Bof