So, what we know is: « PHE had set up an automatic process to pull this data together into Excel templates [...] When [the row limit] was reached, further cases were simply left off. » The terrible thing here is dropping data rather than reporting an error and refusing to run. It isn't clear what piece of software was behind this "automatic process". Clearly the responsible humans are to blame. If the software that d…
> Is there anything in Excel itself that behaves like that? I'd imagine the default error-handling behaviour of 9/10 Excel macros is to throw away data
Missing Covid-19 test data was caused by the ill-thought-out use of Excel
221–230 of 834 posts
Re: Missing Covid-19 test data was caused by the ill-thought-out use of Excel
#222Earlier quoted context omitted.
Did they pick XLS because it's easier to parse or something? I can't imagine why someone would pick a format that was largely replaced 10 years ago.
Moving from XLS to XLSX will break your macros and would require all machines to be running Office 2007 or later.
Re: Missing Covid-19 test data was caused by the ill-thought-out use of Excel
#223This is indeed user incompetence, but so far every news source quoted the official PR and said it was an "Excel Problem". Microsoft PR was caught unprepared - I wonder how they'll re-spin it in the next few days (and for the first time that I can recall, a Microsoft product was wrongly blamed...) Pay attention, how every time there's a Windows virus or worm, it's a "Computer Virus", but in the (extremely rare) occasi…
It's not a user issue, it's a government incompetence issue. Who was the technical genius who thought 'right, we need to store thousands of lines of critical and important data, I know! Excel!'
Re: Missing Covid-19 test data was caused by the ill-thought-out use of Excel
#224Re: Missing Covid-19 test data was caused by the ill-thought-out use of Excel
#225This is indeed user incompetence, but so far every news source quoted the official PR and said it was an "Excel Problem". Microsoft PR was caught unprepared - I wonder how they'll re-spin it in the next few days (and for the first time that I can recall, a Microsoft product was wrongly blamed...) Pay attention, how every time there's a Windows virus or worm, it's a "Computer Virus", but in the (extremely rare) occasi…
This was absolutely a user error and the title "Excel: Why using Microsoft's tool caused Covid-19 results to be lost" is really disappointingly click-baity.
Re: Missing Covid-19 test data was caused by the ill-thought-out use of Excel
#226Earlier quoted context omitted.
If you read the article (perhaps its been updated?), they were using the old XLS format and they hit the limit at 64,000 lines PHE had set up an automatic process to pull this data together into Excel templates so that it could then be uploaded to a central system and made available to the NHS Test and Trace team as well as other government computer dashboards. The problem is that the PHE developers picked an old fil…
Did they pick XLS because it's easier to parse or something? I can't imagine why someone would pick a format that was largely replaced 10 years ago.
They may have chosen XLS because they used Excel back when that was default, and now they don't want to "risk" anything by switching horses mid-stream.
Re: Missing Covid-19 test data was caused by the ill-thought-out use of Excel
#227Earlier quoted context omitted.
It's hard to say from here what would be the best thing for them to use, but simply using a modern spreadsheet format instead of the ancient xls seems fine for interchange.
There's not much to stop the devs from using open source tools to create a PHP web frontend and db backend for this data - and secure it as well. Heck, if they still need to export, they could do that from the data too. Sure - use Excel for POC, but get that DB backend up pronto.
Re: Missing Covid-19 test data was caused by the ill-thought-out use of Excel
#228Apparently it's super common, which fills me with horror. But these guys managed to take it to 11 by abusing it in yet another novel way.
Re: Missing Covid-19 test data was caused by the ill-thought-out use of Excel
#229Earlier quoted context omitted.
It's not a user issue, it's a government incompetence issue. Who was the technical genius who thought 'right, we need to store thousands of lines of critical and important data, I know! Excel!'
Except it wasn’t the government. They outsourced the test and trace system to private companies.
Re: Missing Covid-19 test data was caused by the ill-thought-out use of Excel
#230Each test result creating several rows of data seems like a problem too. In clean data, every observation is one row. It makes working with the dataset much easier. In this scenario, I would expect one observation to correspond to one test result. The multiple rows are then better off pivoted into columns.