web-dev-qa-db-ja.com

Python / PandasはExcelシートからコピーアンドペーストします

この構文は、あるワークブック固有のシートから別のワークブックにコピーして貼り付けるためのものであることがわかりました。ただし、助けが必要なのは、コピーした情報を2番目のワークブック/シートの特定のセルに貼り付ける方法です。 A1ではなくセルB3に情報を貼り付ける必要があるように。ありがとうございました

import openpyxl as xl
path1 = "C:/Users/almur_000/Desktop/disandpopbyage.xlsx"
path2 = "C:/Users/almur_000/Desktop/disandpopbyage2.xlsx"
wb1 = xl.load_workbook(filename=path1)
ws1 = wb1.worksheets[0]
wb2 = xl.load_workbook(filename=path2)
ws2 = wb2.create_sheet(ws1.title)
for row in ws1:
    for cell in row:
        ws2[cell.coordinate].value = cell.value
wb2.save(path2)

wb2はpath2 "C:/Users/almur_000/Desktop/disandpopbyage2.xlsx"です。

2
Mazin

OPはopenpyxlモジュールを使用しているので、そのモジュールを使用してこれを行う方法を示したかったのです。この回答を使用して、元のデータを新しい列と行の座標に移動する方法を示します(これを行うためのより良い方法があるかもしれません)。

この完全に再現可能な例では、最初に「test.xlsx」というデモ用のワークブックを作成し、「test_1」、「test_2」、「test_3」という名前の3枚のシートを作成します。次に、openpyxlを使用して、「test_2」を「new.xlsx」という新しいブックにコピーし、セルを4列上および3列下にシフトします。 ord()およびchr()関数を利用します。

import pandas as pd
import numpy as np
import openpyxl

# This section is sample code that creates a worbook in the current directory with 3 worksheets
df = pd.DataFrame(np.random.randn(10, 3), columns=list('ABC'))
writer = pd.ExcelWriter('test.xlsx', engine='xlsxwriter')
df.to_Excel(writer, sheet_name='test_1', index=False)
df.to_Excel(writer, sheet_name='test_2', index=False)
df.to_Excel(writer, sheet_name='test_3', index=False)
wb  = writer.book
ws = writer.sheets['test_2']
writer.close()
# End of sample code that creates a worbook in the current directory with 3 worksheets

wb = openpyxl.load_workbook('test.xlsx')
ws_name_wanted = "test_2"
list_all_ws = wb.get_sheet_names()
for item in list_all_ws:
    if item != ws_name_wanted:
        remove = wb.get_sheet_by_name(item)
        wb.remove_sheet(remove)
ws = wb['%s' % (ws_name_wanted)]
for row in ws.iter_rows():
    for cell in row:
        cell_value = cell.value
        new_col_loc = (chr(int(ord(cell.coordinate[0:1])) + 4))
        new_row_loc = cell.coordinate[1:]
        ws['%s%d' % (new_col_loc ,int(new_row_loc) + 3)] = cell_value
        ws['%s' % (cell.coordinate)] = ' '

 wb.save("new.xlsx")

'test.xlsx'は次のようになります:

Expected Output of test.xlsx

そして、「new.xlsx」は次のようになります:

Expected Output of new.xlsx

1
patrickjlong1

私を助けてくれてありがとう。少し変更を加えて答えを見つけました。最後のdefステートメントを削除し、それ以外はすべてそのままにしました。それは素晴らしく機能します。テンプレートから何も削除せずに、必要な場所にコピーして貼り付けます。

`#! Python 3

-OpenPyXlライブラリを使用して範囲をコピーして貼り付ける

import openpyxl

#Prepare the spreadsheets to copy from and paste too.

#File to be copied
wb = openpyxl.load_workbook("foo.xlsx") #Add file name
sheet = wb.get_sheet_by_name("foo") #Add Sheet name

#File to be pasted into
template = openpyxl.load_workbook("foo2.xlsx") #Add file name
temp_sheet = template.get_sheet_by_name("foo2") #Add Sheet name

#Copy range of cells as a nested list
#Takes: start cell, end cell, and sheet you want to copy from.
def copyRange(startCol, startRow, endCol, endRow, sheet):
    rangeSelected = []
    #Loops through selected Rows
    for i in range(startRow,endRow + 1,1):
        #Appends the row to a RowSelected list
        rowSelected = []
        for j in range(startCol,endCol+1,1):
            rowSelected.append(sheet.cell(row = i, column = j).value)
        #Adds the RowSelected List and nests inside the rangeSelected
        rangeSelected.append(rowSelected)

    return rangeSelected


#Paste range
#Paste data from copyRange into template sheet
def pasteRange(startCol, startRow, endCol, endRow, sheetReceiving,copiedData):
    countRow = 0
    for i in range(startRow,endRow+1,1):
        countCol = 0
        for j in range(startCol,endCol+1,1):

            sheetReceiving.cell(row = i, column = j).value = copiedData[countRow][countCol]
            countCol += 1
        countRow += 1
def createData():
    print("Processing...")
    selectedRange = copyRange(1,2,4,14,sheet) #Change the 4 number values
    pastingRange = pasteRange(1,3,4,15,temp_sheet,selectedRange) #Change the 4 number values
    #You can save the template as another file to create a new file here too.s
    template.save("foo.xlsx")
    print("Range copied and pasted!")`
1
Mazin

シート全体をブックから別のブックにコピーして貼り付ける。

import pandas as pd

#change NameOfTheSheet with the sheet name that includes the data
data = pd.read_Excel(path1, sheet_name="NameOfTheSheet")

#save it to the 'NewSheet' in destfile
data.to_Excel(path2, sheet_name='NewSheet')
0
Karam Qusai