Hello!
The checkbox is in a gallery that collects it's data from a collection:

I make this dropdown, how can I make to see:
- - all the solved data when selected "Solved"
- - all the unsolved data when selected "Unsolved"
- -all data when nothing is selected ?
If(Dropdown4_2.Selected.Value="Solved",
Filter(? ,Checkbox3_6.Value=true),
If(Dropdown4_2.Selected.Value="UnSolved",
Filter(? ,Checkbox3_6.Value=false),
If(Dropdown4_2.Selected.Value=Blank(),
?)))
This is my code. With what can I replace the '?' in the code ?
I can't replace it with the name of collection, because column Status is the only one that didn't collect data from a collection.