How We Spent $500 on Tech to Ship $2.6M of Soylent
1–10 of 78 posts
Re: How We Spent $500 on Tech to Ship $2.6M of Soylent
#2Note: I might be biased because hacking things together is what I'm good at.
Re: How We Spent $500 on Tech to Ship $2.6M of Soylent
#3Re: How We Spent $500 on Tech to Ship $2.6M of Soylent
#4That was a huge pain point in a previous work that I did.
Re: How We Spent $500 on Tech to Ship $2.6M of Soylent
#5Does anyone know how to get around that Excel CSV issue, where Excel will "helpfully" convert a number-like value into a meaningless value in scientific notation, even if the number was quoted like "1234"? That was a huge pain point in a previous work that I did.
Just to be clear - you can then save the xls/xlsx to csv and the csv won't contain the leading apostrophe, but will show the whole number.
Re: How We Spent $500 on Tech to Ship $2.6M of Soylent
#6Does anyone know how to get around that Excel CSV issue, where Excel will "helpfully" convert a number-like value into a meaningless value in scientific notation, even if the number was quoted like "1234"? That was a huge pain point in a previous work that I did.
Re: How We Spent $500 on Tech to Ship $2.6M of Soylent
#7Does anyone know how to get around that Excel CSV issue, where Excel will "helpfully" convert a number-like value into a meaningless value in scientific notation, even if the number was quoted like "1234"? That was a huge pain point in a previous work that I did.
Can't you set the number format on the cell?
Re: How We Spent $500 on Tech to Ship $2.6M of Soylent
#8Re: How We Spent $500 on Tech to Ship $2.6M of Soylent
#9Does anyone know how to get around that Excel CSV issue, where Excel will "helpfully" convert a number-like value into a meaningless value in scientific notation, even if the number was quoted like "1234"? That was a huge pain point in a previous work that I did.
If you put an apostrophe in front of the number it will store it as text but will appear as a number. Just to be clear - you can then save the xls/xlsx to csv and the csv won't contain the leading apostrophe, but will show the whole number.
The issue here was that there's no way to let Excel know that this value in this CSV file is not a number. The only way around it that I know of is to stick with xlsx, which has its own pain points.
Re: How We Spent $500 on Tech to Ship $2.6M of Soylent
#10Earlier quoted context omitted.
If you put an apostrophe in front of the number it will store it as text but will appear as a number. Just to be clear - you can then save the xls/xlsx to csv and the csv won't contain the leading apostrophe, but will show the whole number.
If you put the apostrophe in front of a number, and save it as csv, that works. But if you reopen that exact same file, Excel will still misinterpret the number. The issue here was that there's no way to let Excel know that this value in this CSV file is not a number. The only way around it that I know of is to stick with xlsx, which has its own pain points.
What you can do is put 2 apostrophes in front of the number in xls/xlsx and save it to csv. The conversion will drop one apostrophe and when you open the csv it will still have one apostrophe in front of it followed by the whole number. Then you can use a formula like =RIGHT(A1,LEN(A1)-1) to remove the leading apostrophe. The number generated by the formula appears as a proper number again and is usable in calculations.