excel large function issues when having duplicate values -
ok must sound dumb question have column numbers , numbers may contain duplicate numbers. lets column has 20,20,10. when large function example =large(columna,2) give me 20 instead of 10. how fix that
you can use:
=large(if(range < large(range,2),range),1)
entered ctrl+shift+enter (if entered correctly, excel surround curly braces {}). if want 3rd, 4th, 5th... number, change value in inner large()
.
you can try:
=large(range,countif(range,max(range))+1)
Comments
Post a Comment