明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1707|回复: 3

如何判断行数非空?为什么不行

[复制链接]
发表于 2011-12-2 09:54:57 | 显示全部楼层 |阅读模式
  因为我下面是循环,决定从yline那一行开始写数据
如果是个新表,那么就从第二行 yline=2写数据

如果不是新表(就是已经写过一次数据了),我就接着上次的写
想得到yline的行数————就是上一行数据的下面一行的行号!!!
这个表的表头就是 块名称  阀名称  数量
我的代码不对,调试不成功!


能帮我改一下么?   
Dim Excel As Object
Dim ExcelSheet As Object
Dim ExcelWorkbook As Object
'创建Excel应用程序实例

On Error Resume Next
Set Excel = GetObject(, "Excel.Application")
Set ExcelSheet = Excel.ActiveSheet
Excel.Visible = True
   If ExcelSheet.Cells(1, 1).Value = "" Then
         ExcelSheet.Cells(1, 1).Value = "块名称"
         ExcelSheet.Cells(1, 2).Value = "阀名称"
         ExcelSheet.Cells(1, 3).Value = "数量"
         yline = 2 '写入行位置
    Else
  yline = ExcelSheet.sheets(1).UsedRange.Rows.Count
   End If



发表于 2011-12-2 11:32:56 | 显示全部楼层
Private Sub Command1_Click()
Dim Excel As Object
Dim ExcelSheet As Object
Dim ExcelWorkbook As Object
'创建Excel应用程序实例

On Error Resume Next
Set Excel = GetObject(, "Excel.Application")
Set ExcelSheet = Excel.ActiveSheet
Excel.Visible = True
With ExcelSheet
   If Len(.cells(1, 1)) = 0 Then
         .cells(1, 1) = "块名称"
         .cells(1, 2) = "阀名称"
         .cells(1, 3) = "数量"
    End If
   
    N = .cells(65536, 1).End(-4162).Row + 1
    .cells(N, 1) = "你的数据"
End With
End Sub
不建议你Excel申明为后期绑定,正确的应用前期绑定。这也就是你找不到空行原因。
 楼主| 发表于 2011-12-2 15:16:43 | 显示全部楼层
End(-4162).Row ?这个不明白
 楼主| 发表于 2011-12-2 15:17:32 | 显示全部楼层
我用下面的程序搞定了

  If ExcelSheet.Cells(1, 1).Value = "" Then
         ExcelSheet.Cells(1, 1).Value = "块名称"
         ExcelSheet.Cells(1, 2).Value = "阀名称"
         ExcelSheet.Cells(1, 3).Value = "数量"
         yline = 2 '写入行位置
      Else
   yline = ExcelSheet.UsedRange.Rows.Count + 1
    End If
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 18:26 , Processed in 0.173515 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表