我试着挑出一个单独的细胞,而不是一个常数,因为它取决于手头的数据。
Dim lastrow As Integer
Dim sumcount As Integer
'find last non-empty row in column C
lastrow = Cells(Rows.Count, 3).End(xlUp).Row
'add up the int values in the range in C
sumcount = Application.WorksheetFunction.Sum(Range("C17", Cells(lastrow, 3)))
'result goes into the next empty cell in C
Cells(lastrow + 1, 3).Value = sumcount
现在,我尝试将单元格Cells(lastrow + 1, 3)
放入一个变量中,这样就可以对其进行偏移,并为偏移单元格赋值一个字符串值。
据我所知,只有Range对象才能做到这一点,但我不知道实现这一点的语法。是否有我不知道的属性或方法?
2条答案
按热度按时间qyzbxkaa1#
Cells返回一个range对象,所以你应该能够简单地执行以下操作:
fquxozlt2#
添加列总计并写入右侧相邻单元格