Good day,
I have a SharePoint list that contains records. See below.

To avoid delegation, I add a clearcollect to collect the years in the SP list using the following;
ClearCollect(ProjYear,'SharePoint List')
and added a radio button (rby) putting the below code to populate the Year
Distinct(ProjYear,Year(Date1))
Also, I have added a checkbox to filter current records.
And finally, i added a Gallery (gal1) inserting the below code in the Item
Filter(
'SharePoint List',
Date1>= Date(
rby.Selected.Value,
1,
1
),
Date1<= Date(
rby.Selected.Value,
12,
31
)
)
With this, I am able to filter the records by year. Now my question is;
1. I would want to be able to show all the records if no year is selected. (in the radio group).
2. Using the CheckBox, I will like to filter the current records using the Date1 Column (= or greater than today).
Thanks.