diff --git a/script/excel-refresher/excel-refresher.py b/script/excel-refresher/excel-refresher.py deleted file mode 100755 index 4edd47b..0000000 --- a/script/excel-refresher/excel-refresher.py +++ /dev/null @@ -1,11 +0,0 @@ -import openpyxl - -# Load the Excel file -workbook = openpyxl.load_workbook("../../excel/erichments.xlsx") - -# Refresh all data connections in the workbook -for connection in workbook.connections: - connection.refresh() - -# Save the updated workbook -workbook.save("../../excel/erichments2.xlsx")