将 A1 公式和数组转换为 L1C1 公式,反之亦然

发布于 2024-11-18 05:37:01 字数 52 浏览 3 评论 0原文

有没有办法在 Excel 中将时尚 A1 公式和数组转换为时尚 L1C1 公式,反之亦然?

Is there a way to convert the fashion A1 formula and array into the fashion L1C1 formula and vice-versa in Excel?

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

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

发布评论

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

评论(3

梦里梦着梦中梦 2024-11-25 05:37:01

Application.ConvertFormula 方法

Application.ConvertFormula(Formula, FromReferenceStyle, ToReferenceStyle, ToAbsolute, RelativeTo)

Application.ConvertFormula Method.

Application.ConvertFormula(Formula, FromReferenceStyle, ToReferenceStyle, ToAbsolute, RelativeTo)
夜声 2024-11-25 05:37:01

不确定我是否完全理解这个问题,但您可以使用以下方法的组合来互换单元格/范围的公式类型

Sub test()
With Sheet1
    Set Rng = .Range("A1")

    'method1
    Formula = Rng.FormulaR1C1
    Rng.FormulaR1C1 = Formula

    'method2
    Formula = Rng.FormulaR1C1
    Rng.Formula = Formula

    'method3
    Formula = Rng.Formula
    Rng.Formula = Formula

    'method4
    Formula = Rng.Formula
    Rng.FormulaArray = Formula

End With
End Sub

Not sure if I fully understand the question but you can interchange the formula type of a cell/range using combinations of the methods below

Sub test()
With Sheet1
    Set Rng = .Range("A1")

    'method1
    Formula = Rng.FormulaR1C1
    Rng.FormulaR1C1 = Formula

    'method2
    Formula = Rng.FormulaR1C1
    Rng.Formula = Formula

    'method3
    Formula = Rng.Formula
    Rng.Formula = Formula

    'method4
    Formula = Rng.Formula
    Rng.FormulaArray = Formula

End With
End Sub
陪你到最终 2024-11-25 05:37:01

偶然间,我正在看《VBA and Macros for Microsoft Office Excel 2007 - Bill Jelen》一书,他说:
1)在编辑器VBA中;
2)输入CTRL+G;
3)输入“打印ActiveCell.FormulaL1C1”;
4)按回车键;

By Chance, I was looking the book "VBA and Macros for Microsoft Office Excel 2007 - Bill Jelen" he says that:
1)In the Editor VBA;
2)type CTRL+G;
3)type "Print ActiveCell.FormulaL1C1";
4)press Enter;

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