Sasa --
You can better describe condtion by condition what you want to compute/achive like this
K2 > 10 and K2 < 20 ----> *
etc
Care to do that?
Aladin
=======
Try
=IF($K$2>10,IF($K$2<20,"*","**"),"")
If its less than 20 you get "*" else if its equal or greater than 20 you get "**"
You could skip the IFs and use...
=REPT("*",MIN(2,MAX(0,$K$2)/10))
...later if you decide to add an asterisk for
each increment of 10 you could change it to...
=REPT("*",MAX(0,$K$2)/10)
...which is much simplier than nesting IFs!
Thank a lot. Works fine :)))
Thanks. Works even better !!!
Really appreciate it :)