Earlier quoted context omitted.
Is it really that hard to spend 5 minutes setting up a decent database? Use sqlite if you really want something simple. I guess you still have to understand locking (especially on distributed filesystems.) I've certainly seen people mess that up with spreadsheets.
It takes a course to understand how to to use a relational database. MS Access used to come as standard with Office and is actually the perfect solution to many of the problems that businesses use Excel for. It's very rarely that people actually used Access as Excel was far more intuitive and good enough for many projects especially in the early stages.
Missing Covid-19 test data was caused by the ill-thought-out use of Excel
641–650 of 834 posts
Re: Missing Covid-19 test data was caused by the ill-thought-out use of Excel
#642I work in healthcare and by far the biggest production issues we've ever run into are people who run Excel spreadsheets through our file processing where the leading zero's have been removed from patient identifiers because that's Excel's default behavior and you CANNOT TURN IT OFF! EDIT: I have no idea who downvoted my post because what I said is 100% true. We have to tell customers to stop opening CSVs in Excel and…
I used to work with books, which obviously includes ISBNs. They are 13 digit numbers, helpfully turned into scientific notation by Excel.
Re: Missing Covid-19 test data was caused by the ill-thought-out use of Excel
#643Always use checked pre- and post-conditions in a data pipeline. This simple post-condition would have caught this issue: The sheet after merge operation must have a number of rows equal to the sum of number of rows for all merged sheets. Assuming this is a merge of a standardized input, then another post-condition might be: The number of columns in output shall equal the number of columns in the input. Might want to…
> Always use checked pre- and post-conditions in a data pipeline. [A] simple post-condition would have caught this issue I'm not sure they teach that in medical school.
The problem is that PHE's own developers picked an old file format to do this - known as XLS.
Re: Missing Covid-19 test data was caused by the ill-thought-out use of Excel
#644Earlier quoted context omitted.
and one more: "Scientists rename human genes to stop Microsoft Excel from misreading them as dates. Sometimes it’s easier to rewrite genetics than update Excel" https://www.theverge.com/2020/8/6/21355674/human-genes-renam...
Also the post-2008 financial crisis austerity programs based on Excel analysis. https://mathbabe.org/2013/04/17/global-move-to-austerity-bas...
Re: Missing Covid-19 test data was caused by the ill-thought-out use of Excel
#645While I am not in the habit of defending Microsoft, I think it should be pointed out that it wasn't using "Excel" that was the biggest problem, but using "13-years obsolete format for Excel". Not that there was any reason to be using Excel for this, but it's a bit unfair to blame Microsoft for something they never claimed XLS could do, and provided a much better capacity in XLSX 13 years ago. Again, it's hard to cry…
Nobody is blaming Microsoft. From the article: > And it appears that Public Health England (PHE) was to blame, rather than a third-party contractor.
Re: Missing Covid-19 test data was caused by the ill-thought-out use of Excel
#646Earlier quoted context omitted.
I used to work with books, which obviously includes ISBNs. They are 13 digit numbers, helpfully turned into scientific notation by Excel.
Don't ISBNs also contain an X sometimes?
Re: Missing Covid-19 test data was caused by the ill-thought-out use of Excel
#647I work in healthcare and by far the biggest production issues we've ever run into are people who run Excel spreadsheets through our file processing where the leading zero's have been removed from patient identifiers because that's Excel's default behavior and you CANNOT TURN IT OFF! EDIT: I have no idea who downvoted my post because what I said is 100% true. We have to tell customers to stop opening CSVs in Excel and…
Just format the identifier cells as text. I've also had this problem, this is how I solved it.
Re: Missing Covid-19 test data was caused by the ill-thought-out use of Excel
#648Earlier quoted context omitted.
Off by one errors are all alike; every excel error is an error in its own way.
Not when it mixes up US and UK date formats when you import a CSV. Not when it turns phone numbers into integers and strips off the leading zero.
Re: Missing Covid-19 test data was caused by the ill-thought-out use of Excel
#649All previous major spreadsheet screwups were costing money (largest being $6 billion in losses due to a excel formula mishap) , but this one is playing with lives :( 5 – London Olympics Oversells Swimming Event by 10,000 Tickets 4- Banking powerhouse Barclay’s accidentally bought 179 more contracts than they intended in their purchase of Lehman Brothers assets in 2008. Someone hid cells containing the unwanted contra…
and one more: "Scientists rename human genes to stop Microsoft Excel from misreading them as dates. Sometimes it’s easier to rewrite genetics than update Excel" https://www.theverge.com/2020/8/6/21355674/human-genes-renam...
Or even an algorithm that can detect that you are using gene name from the cells around march1 and sept7.
Re: Missing Covid-19 test data was caused by the ill-thought-out use of Excel
#650It’s fun to point and laugh, but is this really just the consequence of an unprecedented health emergency demanding a rush job? As far as bugs go, it doesn’t sound that bad. They didn’t lose data - they just processed it late? And they spotted it within days/weeks, and have a workaround/correction already? And it’s only the reporting that was wrong, not the more important part where they inform people of results? I’d…