How to extract multiple excel rows from multiple workbooks based on python list using openpyxl?
up vote
0
down vote
favorite
first thank you for your time and consideration.
My code successfully scans a folder a .xlsx workbooks and extracts data from each wkbook wherever it finds a match for on a singular input value (search term) using openpyxl. It takes this data, stores it in lists and writes it to a new .xlsx workbook using pandas dataframes.
My question: how do I go from searching a singular input search term to a list of multiple input values using the existing packages? I tried to do this with a "searchlist" in my code but it does not work- the .xlsx output has no data.
for f in glob.glob("*.xlsx"):
wb = openpyxl.load_workbook(f)
ws = wb['Sheet1']
for row in ws['A1':'EE30000']:
for cell in row:
for cell.value in searchlist:
if cell.value == searchlist:
WorkbookNameList.append(f)
OIDList.append(ws.cell(row=cell.row, column=1).value)
BUList.append(ws.cell(row=cell.row, column=2).value)
AcctList.append(ws.cell(row=cell.row, column=3).value)
ToolRevList.append(ws.cell(row=cell.row, column=10).value)
ToolCOSList.append(ws.cell(row=cell.row, column=28).value)
TAMBAList.append(ws.cell(row=cell.row, column=141).value)
CommentsList.append(ws.cell(row=cell.row, column=34).value)
os.chdir('C:\Users\username\Desktop\extract')
df = DataFrame({'Workbook Name' : WorkbookNameList, 'OID': OIDList,'BU': BUList,'Managed Account': AcctList, 'Revenue Tool Amount': ToolRevList, 'Tool COS': ToolCOSList, 'Customer Technology Node' : TAMBAList, 'BU OID Comment' : CommentsList})
df.to_excel('Output2.xlsx', sheet_name='Sheet1', index=False)
python excel pandas openpyxl
add a comment |
up vote
0
down vote
favorite
first thank you for your time and consideration.
My code successfully scans a folder a .xlsx workbooks and extracts data from each wkbook wherever it finds a match for on a singular input value (search term) using openpyxl. It takes this data, stores it in lists and writes it to a new .xlsx workbook using pandas dataframes.
My question: how do I go from searching a singular input search term to a list of multiple input values using the existing packages? I tried to do this with a "searchlist" in my code but it does not work- the .xlsx output has no data.
for f in glob.glob("*.xlsx"):
wb = openpyxl.load_workbook(f)
ws = wb['Sheet1']
for row in ws['A1':'EE30000']:
for cell in row:
for cell.value in searchlist:
if cell.value == searchlist:
WorkbookNameList.append(f)
OIDList.append(ws.cell(row=cell.row, column=1).value)
BUList.append(ws.cell(row=cell.row, column=2).value)
AcctList.append(ws.cell(row=cell.row, column=3).value)
ToolRevList.append(ws.cell(row=cell.row, column=10).value)
ToolCOSList.append(ws.cell(row=cell.row, column=28).value)
TAMBAList.append(ws.cell(row=cell.row, column=141).value)
CommentsList.append(ws.cell(row=cell.row, column=34).value)
os.chdir('C:\Users\username\Desktop\extract')
df = DataFrame({'Workbook Name' : WorkbookNameList, 'OID': OIDList,'BU': BUList,'Managed Account': AcctList, 'Revenue Tool Amount': ToolRevList, 'Tool COS': ToolCOSList, 'Customer Technology Node' : TAMBAList, 'BU OID Comment' : CommentsList})
df.to_excel('Output2.xlsx', sheet_name='Sheet1', index=False)
python excel pandas openpyxl
I'm not sure I really understand the question. If you're simply looking to search a worksheet for different terms then use a dictionary for this – search StackOverflow for examples of how to do this.
– Charlie Clark
Nov 23 at 9:02
thanks Charlie. I did some further research and looks like pandas merge is what I am looking for
– miclark
Nov 26 at 1:30
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
first thank you for your time and consideration.
My code successfully scans a folder a .xlsx workbooks and extracts data from each wkbook wherever it finds a match for on a singular input value (search term) using openpyxl. It takes this data, stores it in lists and writes it to a new .xlsx workbook using pandas dataframes.
My question: how do I go from searching a singular input search term to a list of multiple input values using the existing packages? I tried to do this with a "searchlist" in my code but it does not work- the .xlsx output has no data.
for f in glob.glob("*.xlsx"):
wb = openpyxl.load_workbook(f)
ws = wb['Sheet1']
for row in ws['A1':'EE30000']:
for cell in row:
for cell.value in searchlist:
if cell.value == searchlist:
WorkbookNameList.append(f)
OIDList.append(ws.cell(row=cell.row, column=1).value)
BUList.append(ws.cell(row=cell.row, column=2).value)
AcctList.append(ws.cell(row=cell.row, column=3).value)
ToolRevList.append(ws.cell(row=cell.row, column=10).value)
ToolCOSList.append(ws.cell(row=cell.row, column=28).value)
TAMBAList.append(ws.cell(row=cell.row, column=141).value)
CommentsList.append(ws.cell(row=cell.row, column=34).value)
os.chdir('C:\Users\username\Desktop\extract')
df = DataFrame({'Workbook Name' : WorkbookNameList, 'OID': OIDList,'BU': BUList,'Managed Account': AcctList, 'Revenue Tool Amount': ToolRevList, 'Tool COS': ToolCOSList, 'Customer Technology Node' : TAMBAList, 'BU OID Comment' : CommentsList})
df.to_excel('Output2.xlsx', sheet_name='Sheet1', index=False)
python excel pandas openpyxl
first thank you for your time and consideration.
My code successfully scans a folder a .xlsx workbooks and extracts data from each wkbook wherever it finds a match for on a singular input value (search term) using openpyxl. It takes this data, stores it in lists and writes it to a new .xlsx workbook using pandas dataframes.
My question: how do I go from searching a singular input search term to a list of multiple input values using the existing packages? I tried to do this with a "searchlist" in my code but it does not work- the .xlsx output has no data.
for f in glob.glob("*.xlsx"):
wb = openpyxl.load_workbook(f)
ws = wb['Sheet1']
for row in ws['A1':'EE30000']:
for cell in row:
for cell.value in searchlist:
if cell.value == searchlist:
WorkbookNameList.append(f)
OIDList.append(ws.cell(row=cell.row, column=1).value)
BUList.append(ws.cell(row=cell.row, column=2).value)
AcctList.append(ws.cell(row=cell.row, column=3).value)
ToolRevList.append(ws.cell(row=cell.row, column=10).value)
ToolCOSList.append(ws.cell(row=cell.row, column=28).value)
TAMBAList.append(ws.cell(row=cell.row, column=141).value)
CommentsList.append(ws.cell(row=cell.row, column=34).value)
os.chdir('C:\Users\username\Desktop\extract')
df = DataFrame({'Workbook Name' : WorkbookNameList, 'OID': OIDList,'BU': BUList,'Managed Account': AcctList, 'Revenue Tool Amount': ToolRevList, 'Tool COS': ToolCOSList, 'Customer Technology Node' : TAMBAList, 'BU OID Comment' : CommentsList})
df.to_excel('Output2.xlsx', sheet_name='Sheet1', index=False)
python excel pandas openpyxl
python excel pandas openpyxl
asked Nov 22 at 15:38
miclark
1
1
I'm not sure I really understand the question. If you're simply looking to search a worksheet for different terms then use a dictionary for this – search StackOverflow for examples of how to do this.
– Charlie Clark
Nov 23 at 9:02
thanks Charlie. I did some further research and looks like pandas merge is what I am looking for
– miclark
Nov 26 at 1:30
add a comment |
I'm not sure I really understand the question. If you're simply looking to search a worksheet for different terms then use a dictionary for this – search StackOverflow for examples of how to do this.
– Charlie Clark
Nov 23 at 9:02
thanks Charlie. I did some further research and looks like pandas merge is what I am looking for
– miclark
Nov 26 at 1:30
I'm not sure I really understand the question. If you're simply looking to search a worksheet for different terms then use a dictionary for this – search StackOverflow for examples of how to do this.
– Charlie Clark
Nov 23 at 9:02
I'm not sure I really understand the question. If you're simply looking to search a worksheet for different terms then use a dictionary for this – search StackOverflow for examples of how to do this.
– Charlie Clark
Nov 23 at 9:02
thanks Charlie. I did some further research and looks like pandas merge is what I am looking for
– miclark
Nov 26 at 1:30
thanks Charlie. I did some further research and looks like pandas merge is what I am looking for
– miclark
Nov 26 at 1:30
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53434272%2fhow-to-extract-multiple-excel-rows-from-multiple-workbooks-based-on-python-list%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I'm not sure I really understand the question. If you're simply looking to search a worksheet for different terms then use a dictionary for this – search StackOverflow for examples of how to do this.
– Charlie Clark
Nov 23 at 9:02
thanks Charlie. I did some further research and looks like pandas merge is what I am looking for
– miclark
Nov 26 at 1:30