Hi. I'm trying to get the data from a huge source sheet (40.000+ rows) into a destination sheet that should collect just the rows that match 3 conditions.
We are talking about students:
SOURCE SHEET COLUMNS
ID - Name - Surname - Status - Course A - Course B
12 Mark Smith Enrolled Yes No
....
In the destination sheet I would need to see just the rows that match these 3 conditions:
Status is Enrolled
Course A is Yes
Course B is No
I started from this formula but obviously I'm getting just 1 result based on 1 filter:
=INDEX(COLLECT({source_ID}, {source_status}, "Enrolled"), 1)
Thanks.