Excel,problem with if function

Solved/Closed
soni17177 Posts 10 Registration date Wednesday 10 October 2012 Status Member Last seen 22 October 2012 - 16 Oct 2012 à 13:49
soni17177 Posts 10 Registration date Wednesday 10 October 2012 Status Member Last seen 22 October 2012 - 17 Oct 2012 à 14:32
Hello,


i am working with excell with follwing formula-
=IF(H33>=75,"A",IF(H33>=60,"B",IF(H33>=45,"C",IF(H33>=33,"D",IF(H33>=0,"E",IF(H33=AB,"E"))))))
above formula is working properly with numeric values 0 to 100,but if the cell having a alphabatic value"AB" than this formula showing there "A" whenever i want to show there "E".
please heip me to correct it.
thank you
Related:

3 responses

aquarelle Posts 5961 Registration date Saturday 7 April 2007 Status Moderator Last seen 14 February 2026 491
16 Oct 2012 à 15:28
Hi,

Try this :
=IF(H33>=75,"A",IF(H33>=60,"B",IF(H33>=45,"C",IF(H33>=33,"D",IF(H33>=0,"E",IF(H33="AB","E"))))))

Best regards
soni17177 Posts 10 Registration date Wednesday 10 October 2012 Status Member Last seen 22 October 2012
16 Oct 2012 à 15:40
above given formula also showing A for alphabatic cell having value AB
aquarelle Posts 5961 Registration date Saturday 7 April 2007 Status Moderator Last seen 14 February 2026 491
16 Oct 2012 à 16:13
And like that ?
=IF(H33="AB","E",IF(H33>=75,"A",IF(H33>=60,"B",IF(H33>=45,"C",IF(H33>=33,"D",IF(H33>=0,"E"))))))
soni17177 Posts 10 Registration date Wednesday 10 October 2012 Status Member Last seen 22 October 2012
17 Oct 2012 à 14:32
thanks a lot