Excel命名范围解析为其实际目标

发布于 2024-07-26 12:32:24 字数 323 浏览 8 评论 0原文

这是我在 Excel 中看到的一个奇怪的问题

  1. 假设我有一个命名范围 MY_RANGE 指向单元格 $A$1 (或 A1)
  2. 如果我然后在单元格 A2 中输入 =MY_RANGE 一切看起来都不错
  3. 如果我然后尝试编辑单元格 A2 我看到 =$A$1 而不是 =MY_RANGE
  4. 如果我在单独的工作表上输入 =MY_RANGE在同一工作簿中 一切都按预期进行。

我猜测工作表上可能有一些属性可以控制此行为,但我找不到它。 我遇到的问题是,当我复制 & 粘贴单元格,它复制解析的引用而不是命名范围

This is a weird problem I'm seeing in Excel

  1. Say I have a named range MY_RANGE
    which points to cell $A$1 (or A1)
  2. If I then enter =MY_RANGE into cell A2 all looks good
  3. If I then try to edit cell A2 I see =$A$1 rather than =MY_RANGE
  4. If I enter =MY_RANGE on a seperate sheet in the same workbook
    everything works as expected.

I'm guessing there may be some property on the sheet that controls this behaviour but I can't find it. The problem I'm having is that when I copy & paste the cell it copies the resolved reference rather than the named range

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

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

发布评论

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

评论(1

木槿暧夏七纪年 2024-08-02 12:32:24

我已经想出了一个解决方案...
我编写了一个宏来执行以下

  1. 操作将公式(作为字符串,因此“= MY_RANGE”)复制到同一相对位置的不同工作表中(因此将 SheetA 上的单元格 3,3 复制到 SheetB 上的单元格 3,3
  2. ) SheetB 上的单元格返回 SheetA 上的单元格

我仍然完全不知道是什么导致了这个奇怪的问题,但目前这对我来说是一个合理的解决方法

I've kind of figured out a solution...
I've written a macro to do the following

  1. Copy the formula (as a string, so "=MY_RANGE") into a different sheet at the same relative location (so cell 3,3 on SheetA to cell 3,3 on SheetB)
  2. Copy the cell on SheetB back to the Cell on SheetA

I still have absolutely no idea what is causing this odd problem but this is a reasonable workaround for me at the moment

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