Excel vba cum să verificați dacă o celulă din foaia de lucru este goală

Exemple de cod

5
0

excel vba cum să verificați dacă o celulă din foaia de lucru este goală

'VBA to check if cell A1 is blank.

'The best way:
MsgBox IsEmpty([A1])
'But if a formula that returns a zero-length string is in A1, 
'IsEmpty() will return False.


'Another way:
MsgBox Len([A1]) = 0
'Len() will report 0 if A1 contains a formula that returns a
'zero-length string or is completely empty.

'But IsEmpty() is usually better because Len() will throw an
'error if there is an error value in the cell. IsEmpty() on the 
'other hand will just gracefully report False.

'The worksheet functions COUNT() and COUNTA() can also be utilized.
'But these require a call through the boundary between VBA and 
'Excel, which can be slow if done within a loop.

Pagini similare

Pagini similare cu exemple

În alte limbi

Această pagină este în alte limbi

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................