我需要在单元格中插入使用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,但结果始终相同。
答案 0 :(得分:0)
让我们说生日是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)
..虽然看起来有些奇怪,但应该会给您正确的答案,而不是错误。