vb操作excel问题
用vb打开一个excel表格,逐次判断其中的sheet中第一个单元格是否为空,若为空则保存后退出,代码怎么写呢?求大神赐教!
2015-04-29 10:19

2015-04-29 10:30
2015-04-29 10:48
If sht.UsedRange.Address = "$A$1" And sht.Range("A1") = "" Then
Text1.Text = sht.Name & "为空表"
End If
2015-04-29 11:07
2015-04-29 14:50
2015-04-29 14:57
2015-04-29 15:00

2015-04-29 15:19
2015-04-29 15:22
2015-04-29 15:31