Hello everyone,
i want to import an Excel-File ( xls ) with the Open() function. Here is my code:
"path\file.xls",
Worksheets( "worksheet1" ),
Use for all sheets( 0 ),
Concatenate Worksheets( 0 ),
Create Concatenation Column( 0 ),
Worksheet Settings(
| 1, |
| Has Column Headers( 1 ), |
| Number of Rows in Headers( 1 ), |
| Headers Start on Row( 5 ), |
| Data Starts on Row( 6 ), |
| Data Starts on Column( 2 ), |
| Data Ends on Row( 0 ), |
| Data Ends on Column( 0 ), |
| Replicated Spanned Rows( 1 ), |
| Suppress Hidden Rows( 1 ), |
| Suppress Hidden Columns( 1 ), |
| Suppress Empty Columns( 1 ), |
| Treat as Hierarchy( 0 ), |
),
);
The 2nd column in the xls-file ( Column 2 <--> Data Starts on Column(2) ) is filled with dates in the format dd.mm.yyyy. The issue is now, that the import doesn´t work correct, since it imports the dates in the format mm.dd.yyyy.
Is there a way to import the dates in the approbiate format, i. e. dd.mm.yyyy ?
Thank you very much!