How to change date format in excel file?

HI @SURESH_P

How about this expression?

DateTime.ParseExact("12/08/2022","MM/dd/yyyy",System.Globalization.CultureInfo.InvariantCulture).ToString("dd-MM-yyyy")

image

Regards
Gokul