Hi @njshep,
Have you solved your problem?
Could you please tell me if all those Checkboxes representing different 15 Yes/No columns in your list?
Do you want to filter the Gallery based on Checkbox value corresponding to different columns?
Here is what I assume:
1). All these 15 Yes/No columns have different Checkboxes
2). Once you check a Checkbox, filter the Gallery based on a Yes/No column including true value
If my understanding is correct, I think this is a huge work load for you to list all the conditions.
The following is an example that I assume yo just have 2 Yes/No columns:
If(
Checkbox5.Value,
If(
Checkbox4.Value,
Filter(
BU,
Boolean = true,
Dued = true
),
Filter(
BU,
Dued = true
)
),
If(
Checkbox4.Value,
Filter(
BU,
Boolean = true
),
BU
)
)
