Hello
I have a Gallery that filters the following from a SQL datasource (the problem occurs in the red highlight):
With(
{
wDate:
DateAdd(
Today(),
-14,
Days
)
},
SortByColumns(
Filter(
vw_ITChangeRequests,
Status = "Closed" &&
StatusDateInt < wDate
),
"StatusDateInt",
Descending
)
)
However, I get the error "The requested operation is invalid. Server response failed, we cannot apply operator < to types Timezone and Number". Any suggestions please?
Thank you