Hi @Anonymous :
Are you saying that the value in tart_Date is time data with a date offset?
Then its data type should be ‘datetimeoffset’ instead of ‘datetime’, right?
It’s okay, I did a test for your reference:
1\My data table


2\Connect to the database

I noticed that even if I set the date offset, the time I get in the APP is still UTC time
3\Add a date picker control (DatePicker2)
Test1:
Filter('[dbo].[InzmamTable]',Text(Start_Dat2,"[$-en]yyyy/mm/dd")=Text(DatePicker2.SelectedDate,"[$-en]yyyy/mm/dd"))

Test2:
Filter('[dbo].[InzmamTable]',Text(Start_Dat1,"[$-en]yyyy/mm/dd")=Text(DatePicker2.SelectedDate,"[$-en]yyyy/mm/dd"))
Get the same result
In addition,If you want users to filter UTC time using time with date offset, you can first convert the time with date offset to UTC time. I assume that the user wants to use Now() in Beijing time as the filter condition,the formula should be:
Filter('[dbo].[InzmamTable]',Text(Start_Dat2,"[$-en]yyyy/mm/dd")=Text(DateAdd(Now(),-8,Hours),"[$-en]yyyy/mm/dd"))
Best Regards,
Bof