3

让我们使用xlwings 文档中的示例。

给定以下python代码:

import numpy as np
from xlwings import Workbook, Range

def rand_numbers():
    """ produces std. normally distributed random numbers with shape (n,n)"""
    wb = Workbook.caller()  # Creates a reference to the calling Excel file
    n = int(Range('Sheet1', 'B1').value)  # Write desired dimensions into Cell B1
    rand_num = np.random.randn(n, n)
    Range('Sheet1', 'C3').value = rand_num

这是原始示例。

假设我们将其稍微修改为:

import numpy as np
from xlwings import Workbook, Range

def rand_numbers():
    """ produces std. normally distributed random numbers with shape (n,n)"""
    wb = Workbook.caller()  # Creates a reference to the calling Excel file
    n = int(Range('Sheet1', 'B1').value)  # Write desired dimensions into Cell B1
    rand_num = np.random.randn(n, n)
    return rand_num #modified line

我们使用以下调用从 VBA 调用它:

Sub MyMacro()
    dim z 'new line'
    z = RunPython ("import mymodule; mymodule.rand_numbers()")
End Sub

我们得到z一个空值。

有没有办法直接将值返回到vba而不写入文本文件,或者将值放在excel文档中?

感谢您的任何指点。

4

1 回答 1

2

RunPython 不允许您按照 xlwings 文档返回值。要克服这些问题,请使用 UDF,请参阅 VBA:用户定义函数 (UDF) - 但是,目前仅限于 Windows。

https://docs.xlwings.org/en/stable/udfs.html#udfs

于 2019-02-16T06:19:43.880 回答