구글 스프레드 시트에 데이터를 입력하는데 날짜가 변경되어 입력됩니다

제가 입력하는 DT의 데이터는

09/07/2022 00:00:00

이고, Use Google Spreadsheet 액티비티 안에 WriteRange를 써서 입력하고있는데, 입력되는 데이터가 멋대로
2022-09-06T15:00:00.000Z

이렇게 변경되어 입력됩니다.

입력하기전에 Write Range로 엑셀로 출력할때까지도 값이 정상인데 Use Google Spreadsheet 를 사용해서 입력하면 멋대로 날짜가 바뀝니다…ㅠㅠㅠ

Hi

Use this query and then try to add in the google sheet
DateTime.ParseExact(“05-06-2021”,“dd-MM-yyyy”,System.Globalization.CultureInfo.InvariantCulture).ToString(“dd/MM/yyyy”)

Thanks