0
A
回答
1
0
並不清楚OP實際需要(「不爲空」細胞或公式,或者還有什麼導致「不爲空」細胞)
所以我扔在只是一些例子:
Option Explicit
Sub TicketCopy()
With Worksheets("Formulas")
With .Range("A2", .Cells(.Rows.Count, 1).End(xlUp)) '<--| reference column "A" cells from row 2 to last not empty one
' all cells in range with formulas only
With .SpecialCells(xlCellTypeFormulas)
MsgBox "The Rows Count= " & .Count ' cells number
MsgBox "The Rows Count= " & WorksheetFunction.Count(.Cells) ' cells resulting "not blank" (a 'zero' is a "not blank")
MsgBox "The Rows Count= " & WorksheetFunction.CountIf(.Cells, "") ' cells resulting "blank" (a 'zero' is a "not blank")
MsgBox "The Rows Count= " & WorksheetFunction.CountBlank(.Cells) ' cells resulting "blank" (a 'zero' is a "not blank")
End With
'all cells in range
MsgBox "The Rows Count= " & .Count ' cells number
MsgBox "The Rows Count= " & WorksheetFunction.Count(.Cells) 'cells resulting "not blank" (a 'zero' is a "not blank")
MsgBox "The Rows Count= " & WorksheetFunction.CountIf(.Cells, "") 'cells resulting "blank" (a 'zero' is a "not blank")
MsgBox "The Rows Count= " & WorksheetFunction.CountBlank(.Cells) ' cells resulting "blank" (a 'zero' is a "not blank")
End With
End With
End Sub
相關問題
- 1. VBA運行時錯誤1004 object_global的範圍失敗
- 2. VBA運行時錯誤1004 Object_Global的範圍失敗
- 3. VBA方法「對象的範圍」 _Worksheet失敗範圍聲明
- 4. 方法範圍失敗
- 5. 「對象全局失敗的方法範圍」調用VBA中的命名範圍
- 6. 錯誤Excel VBA中的 「方法範圍的對象_global失敗」
- 7. Excel的VBA:範圍類的複製方法失敗
- 8. 對象_global的方法範圍在命名範圍內失敗
- 9. VBA:範圍類的粘貼方法失敗
- 10. Excel VBA - 對象'工作表'的方法'範圍'失敗
- 11. Excel- VBA PasteSpecial方法的範圍級別失敗
- 12. 對象_Worksheet Excel的VBA方法範圍失敗
- 13. Excel VBA - 範圍類的自動填充方法失敗
- 14. Excel VBA「範圍級別的自動填充方法失敗」
- 15. VBA - Combobox - 範圍類失敗的自動過濾方法
- 16. VBA錯誤1004:範圍類別的PasteSpecial方法失敗
- 17. VBA錯誤消息 - 對象_Global'的方法'範圍'失敗
- 18. VBA錯誤1004 - 範圍類的選擇方法失敗
- 19. 對象'_Global'的方法'範圍'失敗
- 20. 對象'_Worksheet'的方法'範圍'失敗
- 21. 對象'範圍'的方法'FormulaR1C1'失敗
- 22. 對象_global的方法範圍失敗
- 23. GoalSeek範圍類的方法失敗
- 24. 範圍類的刪除方法失敗
- 25. 對象'範圍'的方法'MergeArea'失敗
- 26. 範圍類的排序方法失敗
- 27. 粘貼範圍班級特殊方法失敗vba
- 28. 在Excel中的範圍方法VBA
- 29. 對象_worksheet的方法範圍失敗,命名範圍爲
- 30. 運行時錯誤'1004' - 對象'全局'的方法'範圍'在VBA中失敗
範圍不點不參照「公式」工作表 – user3598756
@ user3598756 ** OUCH **!謝謝...........我會修正代碼! –
瞭解,非常感謝! –