How can we access a particular element of a list

0
I want to compare each and every elements of a particular attribute in a list to a certain value. How can this be done??
asked
1 answers
1

Hi Anjali,

What are you trying to achieve? With a List Operation (https://docs.mendix.com/refguide/list-operation) you can filter using a value of your choosing, among other functions. The result is a list of objects of which the attribute matches your value. This is a lot easier (and faster) than having to iterate over all objects using a loop.

answered