Skip to content
Advertisement

Append all excel files in directory to an array ONLY if it contains a specific sheet

Currently I’m reading all excel files and appending the “data” sheet to an array from a given directory. The issue is that some of the excel files in the directory shouldn’t actually be there and don’t contain a “data” sheet. The program then breaks whenever it encounters such a case. My workaround is printing the name of the file before it’s added and then manually deleting the file and rerunning the script. I tried creating a Sheet_check function as shown further below, although this significantly slowed down the run time and also didn’t work as intended.

Q: If there is a simple/efficient method to only add an excel file given that a specific sheet exists

JavaScript

Doesn’t work:

JavaScript

Advertisement

Answer

Using exceptions should work:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement