force excel to stop applying "auto-corrections" to csv import data - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T02:37:49Z http://stackoverflow.com/feeds/question/727019 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/727019/force-excel-to-stop-applying-auto-corrections-to-csv-import-data 0 force excel to stop applying "auto-corrections" to csv import data dreftymac 2009-04-07T18:28:52Z 2009-05-01T05:40:25Z <p><strong>NOTE:</strong> this question is <em>almost</em> a dupe of:</p> <p><a href="http://stackoverflow.com/questions/284092/stop-ms-excel-auto-formatting-numeric-strings-as-numbers">http://stackoverflow.com/questions/284092/stop-ms-excel-auto-formatting-numeric-strings-as-numbers</a></p> <p>I say "almost" because this specific question was not asked ...</p> <p><strong>Question:</strong> Is there a way to <strong>attach a "schema" to a CSV file</strong>, prior to Excel import, that allows Excel to understand the correct formatting of the CSV file <em>without</em> requiring post-processing of the CSV file and without requiring end-user intervention in order to correctly format the fields by hand?</p> <p>By schema, I mean any method whatsoever of generating a text-based definition that can be saved somewhere on Customer X's machine and then referenced whenever the usual CSV import has to take place, including but not limited to XSD, VBMacro, or whatever conventions Excel has for this kind of operation (if any).</p> <p><strong>Background:</strong> Excel has a habit of being "helpful" by modifying input data when opened from plain-text such as a CSV file.</p> <p>For an example of what is meant by this, see any of the various following links:</p> <pre><code> http://ask.metafilter.com/28449/Preventing-Excel-applying-time-formatting-to-imported-data http://excel.tips.net/Pages/T002588_Handling_Leading_Zeros_in_CSV_Files.html http://social.msdn.microsoft.com/Forums/en-US/isvvba/thread/aae07b39-865f-4c68-a07f-7cad2dfd6733 http://social.msdn.microsoft.com/forums/en-US/vsto/thread/80285088-b476-418f-9613-a2c499c8da7b/ </code></pre> <p>We regularly have to send CSV files to customer X and we do not have the luxury of modifying the CSV files directly in order to "morph" them into a format that Excel will render exactly as intended.</p> <p>Moreover, customer X does not always have the personnel who are trained with Excel in order to do the import correctly.</p> http://stackoverflow.com/questions/727019/force-excel-to-stop-applying-auto-corrections-to-csv-import-data/727041#727041 1 Answer by Boofus McGoofus for force excel to stop applying "auto-corrections" to csv import data Boofus McGoofus 2009-04-07T18:34:55Z 2009-04-07T18:34:55Z <p>What I've done when facing this problem is create a macro to run after the import which "un-fixes" Excel's fixes. It's not a great solution, but it's a working workaround.</p> http://stackoverflow.com/questions/727019/force-excel-to-stop-applying-auto-corrections-to-csv-import-data/810312#810312 0 Answer by John Y for force excel to stop applying "auto-corrections" to csv import data John Y 2009-05-01T05:40:25Z 2009-05-01T05:40:25Z <p>I'm afraid I don't completely follow. You say you send the CSV files, but you can't modify the CSV files? So you're not generating them? And you can't process them before sending them to the customer?</p> <p>Though I find it difficult to imagine such a situation, I'll assume that's the case. Is there any chance you can get the customer to run a script instead of launching Excel directly? For example, could they be trained to double-click on a VBScript instead of double-clicking the CSV or using Open from Excel?</p> <p>That's the closest I can think of given the constraints you've described, but I can't help but think there has to be something you can do further upstream before it leaves your hands and enters the customer's.</p>