Hi, I need to export a DataSet to excel file. I have date columns in the DataSet. I need to make sure that the date format of the cells has locale: English (United Kingdom) with the date format of dd/mm/yyyy. Currently I am setting the format dd/mm/yyyy using
<Style ss:ID="DateLiteral">
<NumberFormat ss:Format="dd/mm/yyyy;@"/>
</Style>
in the Workbook element. How can I set the desired locale? Also it will be nice if I know how can I set the desired locale using the current culture of user's machine using C#.net.
Thanks :)