在VB中怎样清空excel中sheet1中的所有数据,格式还要保留。
我用双循环实现,好像不实用,有什么命令能处理吗
for i=1 to 1000
   for j=1 to 200
     xlsheet.cells(i,j)=""
   next
next