Bruno Campanini
unread,Sep 28, 2021, 3:56:41 PM9/28/21Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Sign in to report message as abuse
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Antonella Plateroti has brought this to us :
> Ciao a tutti
> non riesco a fare una cosa banale e sto perdendo un sacco di tempo, potete
> aiutarmi? Una cella B2 mi deve restituire la dicitura "NON PRESENTE" se il
> valore è inferiore a 4, "FORSE PRESENTE" se è compreso tra 4 e 6 e "PRESENTE"
> se è superiore a 6. Io ho scritto dopo aver guardato piu' tutorial :
> =SE(B2<4;"NON PRESENTE";SE(B2>3<7;"FORSE PRESENTE";SE(B2>6;PRESENTE;))) ma
> non va! Dove sbaglio?
=IF(B2<4,"NP",IF(AND(B2>=4,B2<=6),"FP",IF(B2>6,"PP")))
Bruno