Hi Members,
I have a requirement in Power Apps to patch the date picker column without time in SharePoint.
I have a SharePoint list [Product Transaction Details]; this list has a Date column [Product Supplied Date], including time.

Now, I have added an Edit form connected with the above SharePoint list on my Power Apps screen. This form has a Date picker control, and also with a dropdown of hours and minutes.

Whenever the user provides the date and time in the edit form and clicks on the Button control.
The SharePoint list should take only the date rather than the time.
For that, On the Button control -> Set its OnSelect property as:
Patch(
'Product Transaction Details',
Defaults('Product Transaction Details'),
{
Title: DataCardKey12.Text,
'Supplied Product': DataCardValue13.Selected,
'Is Paid Or Not': DataCardValue15.Value,
'Product Supplied Date': DateValue(
DateValue1.SelectedDate - TimeZoneOffset(),
"en-US"
)
}
)
But still, Its taking a random time. But I must patch only the date without time in the SharePoint list.

Can anyone please suggest how I can resolve this? Thanks in advance!