Function NB0(Ligne%, Colonne%, LigneDébut%)
Application.Volatile
If Cells(Ligne, Colonne - 1) = 0 Then NB0 = "": Exit Function
If Cells(Ligne, Colonne - 1) = 1 And Cells(Ligne - 1, Colonne) = "Censure" Then NB0 = 0: Exit Function
For L = Ligne - 1 To LigneDébut + 1 Step -1
If Cells(L, Colonne - 1) = 1 Then Exit Function
NB0 = NB0 + 1
Next L
End Function