Which List of the Element

Hello there,

I share a sample screenshot. I have a list and I want to find out which list the element I want.

In the example I have a unique number list. I want to find out what list these elements are on.

Total number of records: 479

Number of other listings: 1470 list

How do I do that?

Thanks.

Is there anyone have an idea?

Thanks

List.Contains node is a good place to start. :slight_smile:

Thanks Jacob,

I want to find out which lists the value of “mehmet” is on. I have edited the script you sent as an example. There, the value of “mehmet” is in the 0 and 1 list.

As a result I want to find the value of 0 and 1.

Generate a range from 0 to one less then the length of the list. Filter that list with the boolean you have already made.

1 Like

Well understood, thanks.

But how can I do that?

i think one of the belows could help

1 Like

List.Transpose on the boolean values from the List.Contains node, then adjust your list levels for the FilterByBoolMask node (I think the mask wants input two but it may be 3).

1 Like