我目前在VBA遇到麻烦而找不到连续的第二个值。
我当前可以找到End(xlToLeft).Value行中的最后一个值,但是如何在此之前找到该值?
我会使用偏移函数,但是有空格,工作表是动态的,所以我不能使用偏移函数。我该怎么做呢?
答案 0 :(得分:0)
为什么不为最后一列创建变量,然后将值设置为自身-2
e.g dim Lastcolumn为整数 Lastcolumn = ActiveSheet.Cells.SpecialCells(xlLastCell).Column Lastcolumn = Lastcolumn - 2
答案 1 :(得分:0)
不确定确切的语法,但类似于以下
for each cell in cells
if cell is notnothing then
' add your code here to use the value
end if
next