Do you have an email I can send the project too? it is too big to upload.
Here is what you will see and need to do in the 3D view. BTW it is the same thing that you will need for the other post you are working on. Same exact family.
Itâs likely too big to email as well. Can you post it to Google Drive or another file sharing service?
I can wetransfer it using your email. then you can download it from them.
Itâs failing because youâre looking for an exact match, which doesnât exist in that column. Thatâs why I said to use String.Contains.
Edit:
Changing your codeblock line from
DestinationEXCEL==Destination;
to
String.Contains(DestinationEXCEL<1L>,Destination<1L>,false);
will return the correct number of âmatchesâ.
Jackpot! can you explain whatâs going on in that code please? What does the <> mean and the 1L and the false?
Itâs the same inputs as the String.Contains node (str, searchFor, ignoreCase), so the false is telling it not to ignore the string case. The <1L> notation is the DesignScipt syntax for list levels. So the codeblock is running as though the node was set to use list levels @L1.
