tester si une case est vide vba

The solution for “tester si une case est vide vba” can be found here. The following code will assist you in solving the problem.

‘ Selectionne la première cellule du tableau
Range(“A1”).Select

‘ Boucle tant que pas vide
Do While Not (IsEmpty(ActiveCell))
NbLigne = NbLigne + 1
Selection.Offset(1, 0).Select
Loop

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts