0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

<Python>xlsファイル群を読み取りシート削除

Posted at

物流の現状分析を行うにあたり、月次に倉庫業者が提供する請求書データ、xlsファイルを大量に受領。

協力会社に情報共有を行うにあたり、受領した各xlsファイルのなかの、
シート「料率」部分のみを削除したかったため、下記コーディングを行った。

人を介してファイル提供してもらう場合、シートの順序が変わる場合もあるため、
シート名を指定して削除した。

import xlwings as xw
import glob

#Excel画面を見せない
xw.App(visible=False)

for file in glob.glob("*.xls"):
    wb = xw.Book(file)
    wb.sheets["料率"].delete()
    wb.save()
    wb.close()
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?