I've been working on this for hours and it's driving me bonkers. I have a simple Power App with some fields that I Patch to an Excel so I can run a Power Automate off of it. However, when it moves the date, it brings it over as a Date Time. Even more odd, when it was first running, it was date only. For the Power Automate to work, I only need the date in the field. Any suggestions? My code is below.
Patch(
Table1,
Defaults(Table1),
{'Assigned To': Name.SelectedText.Value},
{Date: RDate.SelectedDate},
{Region: RegionCode.Text},
{'Company Code': CompanyCode.Text},
{'Company Name': CompanyName.Text},
{Action: Action.Text});
Navigate(Screen1_1)