gpt4 book ai didi

excel - 如何将日期作为变量放入 VBA 的公式中?

转载 作者:行者123 更新时间:2023-12-04 21:30:35 36 4
gpt4 key购买 nike

在代码中,日期是 100% 正确的。当它进入表格时,它会出现“1/0/1900”。

在 VBA 中使用公式似乎是一个问题。

TestDate = DateAdd("m", 1, "9/1/2018")
ActiveCell = TestDate 'output: 10/1/2018
ActiveCell.Offset(1).FormulaR1C1 = "=" & TestDate & "" 'output: 1/0/1900
ActiveCell.Offset(2).Formula = "=" & TestDate & "" 'output: 1/0/1900

最佳答案

引号通常是公式中的一个痛点。我不知道您的目标是什么,但这些版本有效:

    ActiveCell.Offset(1).FormulaR1C1 = "=""" & TestDate & """" 'output: ="10/1/2018"
ActiveCell.Offset(2).Formula = "=""" & TestDate & """" 'output: ="10/1/2018"
ActiveCell.Offset(3).FormulaR1C1 = TestDate 'output: 10/1/2018
ActiveCell.Offset(4).Formula = TestDate 'output: 10/1/2018

这是官方帮助, Quotation marks in string expressions .

关于excel - 如何将日期作为变量放入 VBA 的公式中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53329199/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com