作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Private Function test()
Dim S1 As String, S2 As String
Dim lRow As Long, i As Long
Dim ws As Worksheet
Set ws = ActiveWorkbook.Sheets("pppdp")
With ws
lRow = .Range("A" & .Rows.Count).End(xlUp).Row
For i = 19 To lRow
End Function
嗨,我有用于将表导出到xml的Excel工作表,所以我需要控制来检查A到R范围内是否有空单元格,我从这个开始,但我停在那里并且不'不知道下一步该做什么。
最佳答案
is there empty cell in range A to R?
逻辑是检查单元格总数是否等于填充的单元格总数。
像这样吗?
Sub Sample()
If test = False Then
MsgBox "Range A to R has empty cells"
Else
MsgBox "No Empty Cells"
End If
End Sub
Private Function test() As Boolean
Dim lRow As Long
Dim ws As Worksheet
Set ws = ActiveWorkbook.Sheets("pppdp")
With ws
If Application.WorksheetFunction.CountA(.Cells) <> 0 Then
lRow = .Range("A:R").Find(What:="*", _
After:=.Range("A1"), _
Lookat:=xlPart, _
LookIn:=xlFormulas, _
SearchOrder:=xlByRows, _
SearchDirection:=xlPrevious, _
MatchCase:=False).Row
Else
lRow = 1
End If
test = Application.WorksheetFunction.CountA(.Range("A1:R" & lRow)) _
= .Range("A1:R" & lRow).Cells.Count
End With
End Function
关于excel vba需要控制来检查是否有空单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21657740/
我有一个名为 FeedView 的 View ,由 FeedViewController 处理。 我还有一个名为“NearestStore”的 XIB,它由一个名为“NearestStoreViewC
我有一个警报表,其中 tr 元素是使用 JS 动态添加/删除的。问题是它有一个 border-top 将它与上面的内容分开,当表格为空时我想隐藏这些内容。我试过 :empty 和 display:no
我是一名优秀的程序员,十分优秀!