1. Normal Date compare is OK, for example:
DateValue("2024/04/01") <= DateValue("2024/04/01")
2. One dataverse table(CheckWorks) with date column(CheckWorks_Date), for example:
CheckWorks>CheckWorks_Date, DateType = DateTime & Date Only, cantains 2 Values as following:
2024/4/1,2024/4/2
3. I want to grep: 2024/04/01, so I Filter it.
ClearCollect(
_test1,
Filter(
CheckWorks,
CheckWorks_Date <= DateValue("2024/04/01") // ★★★NG, u can't grep 2024/04/01
CheckWorks_Date < DateValue("2024/04/02") // ★★★OK, now u can grep 2024/04/01
)
)