Sub Macro1()
' Macro1 Macro
' Macro enregistrée le 19/02/2003 par Cathy
Range("ds16:ds17").Select
On Error GoTo Fin
Selection.SpecialCells(xlCellTypeFormulas, 23).Select
For Each cell In Selection
toto = toto + 1
Next
MsgBox toto
If toto > 0 Then
Range("DS14").Value = 1
Else
Range("DS14").Value = 0
End If
Fin:
End Sub