#やりたいこと
https://celaeno42.hatenablog.com/entry/2018/12/03/191854
上記のサイトと同じことをしたいと思い、まんま同じように
作成し実行してみました。
以下のエラーが出力されてしまいました。
何がいけないのか、皆目、検討がつきません。
Python初心者なのですが、お力沿いお願いいたします。
エラー内容
--------------------------- Error --------------------------- Traceback (most recent call last): File "<string>", line 1, in <module> AttributeError: module 'copy_text' has no attribute 'copyText' Press Ctrl+C to copy this message to the clipboard. ---------------------------
copy_text.py
Python
1import xlwings as xw 2 3def copyAddText(): 4 txt = xw.Range('A1').value 5 txt += ', I am the Doctor.' 6 xw.Range('B3').value = txt
copyText
VBA
1Option Explicit 2 3Public Sub copyText() 4 Call RunPython("import copy_text; copy_text.copyText()") 5End Sub
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/17 06:47
2020/06/17 06:48
2020/06/17 07:39