I am trying to use the below code to filter my data based on several field, in which I am selected From date and To date from date picker which i inserted, but it is not working , neither it is producing error, therefore cannot understand reason
Note : I tried "DeliverFromDate_1.SelectedDate" instead of "DeliverFromDate_1.Value", but underlined red color, but when it is value, then it is not red.
Please advise correction of writing these types of code
Filter(
colAllList,
(
Len(HoldModel.Value) = 0 ||
HoldModel.Value in Model
) &&
(
Len(HoldSerial.Value) = 0 ||
HoldSerial.Value in Serial
) &&
(
Len(HoldCustomer.Value) = 0 ||
HoldCustomer.Value in CustomerName
) &&
(
Len(DeliverFromDate_1.Value) = 0 ||
DeliverFromDate_1.Value >= DelDate
) &&
( Len(DeliverDateTo_1.Value) = 0 ||
DeliverDateTo_1.Value < DelDate+1
)
)
My screen image is as below for your fast reference

My screen image of my table in teams of that field is as below for quick reference
