Created
March 25, 2020 21:20
-
-
Save datagy/bc02a010fda96d070e4ddc5aa76140ad to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Section 1 | |
| import openpyxl | |
| files = [] #include paths to your files here | |
| values = [] | |
| # Section 2 | |
| for file in files: | |
| wb = openpyxl.load_workbook(file) | |
| sheet = wb['Sheet1'] | |
| value = sheet['F5'].value | |
| values.append(value) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment