I get CSV files, which in one of the cells is supposed to store a client address. These are typically 12 digit plus numeric fields. When I open the CSV file, the column holding these fields is defined as general and typically the value is shown as 1.23457E+22 whereas the actual value should be 12345678910111213141516 Looking at that field or say converting it to numeric now shows the number as 12345678910111200000000.00, so past the 15th number it's all be set to zero. Does a CSV/Excel have the ability to store a longer number as it should be above or have I lost that the minute the application that created the CSV populated the data to it.
i.e. can I do anything to ensure that once the application writes to a CSV, but either pre-specifying the field type or digits to be retained ensure I get the whole number, not just the first 15 digits.
i.e. can I do anything to ensure that once the application writes to a CSV, but either pre-specifying the field type or digits to be retained ensure I get the whole number, not just the first 15 digits.