I am importing an external CSV file using Import["myfname.csv", "Tabular", HeaderLines -> 1] The first row is a header row, and the first column is named Date. The first column holds dates in the format 08/29/2025. Import gives this column a "String" type. I can convert it after, but I would like it to be a "Date" type at import. There are potentially many columns, so I do not want to specify a type for every column. I know this has to be simple but the documentation and two AIs have failed m...