Hi @JohnMarkPerez ,
To ensure Gallery2 shows only the entries with "true" toggles from Gallery1, use a Filter function. Your Gallery2 items formula should look something like this:
Filter(Gal1, toggle.Value = true)
This assumes that toggle is the name of the toggle control in Gallery1 and Gal1 is the name of the items in Gallery1. The Value property is used because the toggle control's value is a boolean.
Now, in the items property of Gallery2, you can refer to this filtered set:
Filter(Gal1AllItems, toggle.Value = true)
eplace Gal1AllItems with the actual name of the collection or data source used in Gallery1. This way, Gallery2 will display only the entries where the corresponding toggle in Gallery1 is set to true.
Please accept this solution if it resolves the issue. ✅
Best regards,
Muhammad Ali