**问题:**我需要在工作表中最后一次使用行之后插入数据。我能够使用以下代码找到最后使用的行。
ActiveSheet.Cells.(Rows.count, "D").End(xlUp).row
现在我必须在最后使用的行旁边插入数据。
答案 0 :(得分:5)
首先将lastrow
定义为变量。
.row
做的是返回一个表示行的数字,在本例中是最后一行。 +1
将其向下移动1个单元格。
Dim lastrow as Long
lastrow = Activesheet.Cells(Rows.Count, "D").End(xlUp).row + 1
Activesheet.Cells(lastrow, "D").Value = "Your Value here"