Filter string list by 'A' OR 'B'

Hi there,

Apologies as I’m sure this is a very basic query but I’ve not been able to find a solution online…

I have a list of sheets and I’m trying to filter the list to only get the A1 series of sheets.

All of the sheets I need contain the word “LEVEL” except for the Ground Floor Sheet which is called “GROUND FLOOR PLAN”.

How can I filter my list to return a list of values containing the words “LEVEL” OR “GROUND FLOOR PLAN”?

Any help would be greatly appreciated.

Thanks in advance.

hi
get the list that contains true false value of contains “LEVEL”
get the list that contains true false value of contains “GROUND”
use “or” node to get the desired mask to filter them.

or make a parameter like “Paper Size” on sheets and fill it with A1, A3 … etc values , and filter the sheets by its value

2 Likes

@khuzaimah.ElecEng

Thank you so much!