fonction SI à résoudre

  • Thread starter Thread starter formaction
  • Start date Start date
F

formaction

Bonjour
j'aimerai mettre un chiffre 1 dans une cellule si la cellule d'à côté est en
fond bleu , sans chiffre

est-il possible de faire un SI pour résoudre ce problème
merci d'avance
 
Hi

I apologise my French is not good enough to reply in your language, but
I hope that you can read English.
If I understand your question correctly, this can only be done through
VBA.

Try the following function

Function findblue(range As range)
If ActiveCell.Offset(0, -1).Font.ColorIndex = 5 Then
findblue = 1
End If
End Function

=Findblue(A1) entered in cell B1, will return 1, if the font in A1 is
blue.
 
Back
Top