I know you can nest a limited number of if statements but not sure what i am missing to get this work. I am ranking items based on a list but want to omit that item from being ranked if another associated cell equals 100%. I hope this makes sense
this formula works
=IF((g85<1),(G85="na",0,COUNT(G$78:G$91)-(RANK(G85,G$78:G$91)+COUNTIF(G$78:G85,G85))+2),"")
however it rates the cells with 100% and i only want to rate that cell if a value is below 100% so I tried this
IF(g85<1,(G85="na",0,COUNT(G$78:G$91)-(RANK(G85,G$78:G$91)+COUNTIF(G$78:G85,G85))+2))
and tried this
=IF((g85<1),(G85="na",0,COUNT(G$78:G$91)-(RANK(G85,G$78:G$91)+COUNTIF(G$78:G85,G85))+2)),"")
but it wont accept. g85 being a range of 0-100%. Anything below 100% i want rated.
i assume its a possible issue with paranthesis but i am not seeing it as the critiera for true false are correct.. can this not be done?
this formula works
=IF((g85<1),(G85="na",0,COUNT(G$78:G$91)-(RANK(G85,G$78:G$91)+COUNTIF(G$78:G85,G85))+2),"")
however it rates the cells with 100% and i only want to rate that cell if a value is below 100% so I tried this
IF(g85<1,(G85="na",0,COUNT(G$78:G$91)-(RANK(G85,G$78:G$91)+COUNTIF(G$78:G85,G85))+2))
and tried this
=IF((g85<1),(G85="na",0,COUNT(G$78:G$91)-(RANK(G85,G$78:G$91)+COUNTIF(G$78:G85,G85))+2)),"")
but it wont accept. g85 being a range of 0-100%. Anything below 100% i want rated.
i assume its a possible issue with paranthesis but i am not seeing it as the critiera for true false are correct.. can this not be done?