Hi all,
Context: I have two Sharepoint lists A and B. My goal is to check if the B-list items are in the A-list, and mark those items as duplicates with a boolean.
Issue:
The column in list B is a Date field called B-Date which contains only information of type "dd/mm/yyyy"
The column in list A is a Date field called A-Date which contains information of type "dd/mm/yyyy" or "dd/mm/yyyy hh:mm"
So, when my ODATA Query is the following:
A-Date eq 'B-Date'
when A-Date contains Time information as well, there will be no duplicate match (as "01.01.2001 12:00" is different from "01.01.2001")
(In the SharePoint view itself it is only showing the date, but I figured the issue out when exporting the data to excel:

)
Solution I am looking for: So I want to ignore the Time Stamp for the ODATA filter.
I tried creating another calculated-column in the Sharepoint list with =TEXT(A-Date, "dd/mm/yyyy"). But when trying to use this in ODATA filter, I get the error message saying that I can't use a calculated column.
I also tried to write my filter with a compose-expression first, but I couldn't figure that out.
Any help / idea is appreciated.