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)









share|improve this question






















  • 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















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)









share|improve this question






















  • 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













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)









share|improve this question













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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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


















  • 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

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















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






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Contact image not getting when fetch all contact list from iPhone by CNContact

count number of partitions of a set with n elements into k subsets

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks