Filtering and Arrays

J

JJ

I have a Boolean array where the array IDs are the task IDs in the
Project file. Is there a simple way to filter tasks where the array
value is true?

I will be needing 5 sets of Boolean arrays. I was considering doing
one of the following:
a) Create 5 individual Boolean arrays
b) Create an x-by-5 array, where x is the number of tasks
c) Create an array based on a user-defined type with 5 boolean
variables

Is there any disadvantage or advantage to the choices above when
trying to filter for certain tasks where the value is true in the
array?

Thanks in advance!
JJ
 
J

Jack Dahlgren MVP

I'd use option b just for simplicity.
Often filtering in Project is easier than looping through all tasks.
For example filter on the value you want, then select all and work with
active selection.

-Jack
 
Top