Hi,
We start with Powerapps and we use Mysql like database.
The connection is well done. We can make an insert in the table.
But when we want to select a row , we can't use the date column for the select.
For example :
We would like to do this kind of request : Select * from buildtmpmobileapp where dated = "18-09-2023"
We tried with something like :
Set(homeWorkingUp;LookUp('assar.buildtmpmobileapp'; dated = Today()))
or
Set(homeWorkingUp;LookUp('assar.buildtmpmobileapp'; dated = Date(2023;09;18)))
or
Set(homeWorkingUp;LookUp('assar.buildtmpmobileapp'; dated = DateValue(Text("18-09-2023"))))
Here's the structure of our table and one line:


Could you help us ?
Thanks