繁体   English   中英

Excel VBA 将带有变量的公式插入到单元格中

[英]Excel VBA insert formula with a variable into a cell

我需要使用 VBA 在单元格中插入一个公式,但我总是收到运行时错误 1004。代码如下所示:

Sub save_data()

Dim source As Worksheet
Dim list As Worksheet
Dim nextRow As Integer
Dim nextId As Integer
Dim startDate As Date, endDate As Date, randDatum As Date, dateOfBirth As Date

startDate = "17/6/2018"
randDate = WorksheetFunction.RandBetween(startDate, Date)

Set source = Worksheets("Add user")
Set list = Worksheets("Users")

nextRow = list.Range("A" & list.Rows.Count).End(xlUp).Offset(1).Row
nextId = list.Range("A" & list.Rows.Count).End(xlUp).Value + 1
dateOfBirth = source.Range("F24").Value

list.Cells(nextRow, 1).Value = nextId
list.Cells(nextRow, 2).Value = source.Range("F4").Value
list.Cells(nextRow, 3).Value = source.Range("F6").Value
list.Cells(nextRow, 4).Value = source.Range("F8").Value
list.Cells(nextRow, 5).Value = source.Range("F10").Value
list.Cells(nextRow, 6).Value = source.Range("F12").Value
list.Cells(nextRow, 7).Value = source.Range("F14").Value
list.Cells(nextRow, 8).Value = source.Range("F16").Value
list.Cells(nextRow, 9).Value = source.Range("F18").Value
list.Cells(nextRow, 10).Value = source.Range("F20").Value
list.Cells(nextRow, 11).Value = source.Range("F22").Value
list.Cells(nextRow, 12).Value = source.Range("F24").Value
list.Range("M" & nextRow).Formula = "=ROUNDDOWN(YEARFRAC(" & dateOfBirth & ",TODAY(),1),0)"
list.Cells(nextRow, 14).Value = Date
list.Cells(nextRow, 15).Value = randDate
list.Cells(nextRow, 16).Value = Date - randDate
list.Cells(nextRow, 16).Value = "=TODAY()"

End Sub

我试过 Formula 和 FormulaLocal 但结果总是一样的。

假设出生日期是 6.7.2011。

这意味着,使用您的公式:

.Formula = "=ROUNDDOWN(YEARFRAC(" & dateOfBirth & ",TODAY(),1),0)"

它将创建公式:

=ROUNDDOWN(YEARFRAC(6.7.2011,TODAY(),1),0)

你现在能看到这个问题吗?

尝试使用:

.Formula = "=ROUNDDOWN(YEARFRAC(" & dateOfBirth * 1 & ",TODAY(),1),0)"

这将创建公式:

=ROUNDDOWN(YEARFRAC(40730,TODAY(),1),0)

..虽然看起来有点奇怪,但应该给你正确的答案而不是错误。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM