I need some help to make an Excel formula.
=SE(C11<=6;"G4";SE(6<C11<=10;"G6";SE(10<C11<=16;"G10")))
What I want to do is:
If the C11
cell is less than or equal to 6, type G4
.
If the C11
cell is greater than 6 and less than or equal to 10 write G6
.
If the C11
cell is greater than 10 and less than or equal to 16 write G8
.