急!跪求VBA代码 Do--Loop文
发布网友
发布时间:2024-10-19 21:47
我来回答
共2个回答
热心网友
时间:2024-11-18 07:02
sub sum()
total=range("C11")
raneg("D11")=total
do while i<range("b1:b65000").end(xldown)
total=total+range("C"&i).value
range("D"&I)=total
i=i+1
loop
end sub
热心网友
时间:2024-11-18 07:02
sub s()
dim total
total=0
[C11].select
do
total=total+ ActiveCell.Value
ActiveCell.offset(0,1)=total
ActiveCell.offset(1,0).select
loop until ActiveCell=""
end sub