Hi @xwingnutx,
As @AlexBakerWong correctly stated, you will need a filter() statement to reach that goal.
However, you should always enclose / combine your query statements, not write them after one another.
In your case this would leave you with the following code:
SortByColumns(
Search(
AddColumns(
Filter(Report_1,
isBlank(DatePickerTODATE.SelectedDate) || Date <= DatePickerTODATE.SelectedDate,
isBlank(DatePickerFROMDATE.SelectedDate) || Date >= DatePickerFROMDATE.SelectedDate
),
"ToolValue",
Tool.Value
),
txtSearch_1.Text,
"TechNumber",
"ToolValue"
),
"Date",
Descending
);
Please adjust the names of DatePickerTODATE and DatePickerFROMDATE to the correct names.
I hope this helps!