无需 VBA 即可反转函数的一维数组输出(或获取最后一个值)?

发布于 12-09 06:25 字数 220 浏览 0 评论 0原文

假设我有一个 UDF MyFunc(),其成本太高而无法多次调用,MyFunc() 返回一个数组。默认情况下,如果应用于单个单元格,则使用数组中的第一个值。我想要数组的最后一个值。

那么,是否可以:

  • (a) 反转数组以便使用最后一个值,或者

  • (b)直接抓取最后一个值?

Suppose I have a UDF MyFunc() which is too costly to call more than once, MyFunc() returns an array. By default, if applied to a single cell then the first value in the array is used. I want the last value of the array.

So, is it possible to:

  • (a) reverse the array so that the last value is used, or

  • (b) just grab the last value directly?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

复古式2024-12-16 06:25:48

您可以使用 INDEX 返回某个位置

如果您知道想要的位置,则可以

=INDEX(Myfunct(),2)

用于第二个位置等

对于未知大小的最后一个位置

=INDEX(Myfunct(),COUNTA(Myfunct()))

倒数第二个

=INDEX(Myfunct(),COUNTA(Myfunct())-1)

You can use INDEX to return a certain position

If you know the position you want you could use

=INDEX(Myfunct(),2)

for the second position etc

For the last position of unknown size

=INDEX(Myfunct(),COUNTA(Myfunct()))

second last

=INDEX(Myfunct(),COUNTA(Myfunct())-1)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文