I have two sharepoints list :
Books Reservation
-ID -ReservationDate
-Name -ReturnDate
-Book (LookUp of Books, showing the ID)
I have a flow "Get Items" that return the first value when there is a reservation between the specified dates, and if the book Id is equal to the ID. But I'm unable to compare a text value with a "LookUp" value, it always return false.
Note: The "List Name" is Reservation
Here is what my "Filter Query" looks like :
'varReturn' gt ReturnDate and 'varReservation' le ReturnDate and 'varBookId' eq Book
Except for the 'varBookId' eq Book, everything is working fine...