How to use a rank formula that ignores errorsHow do I create an Excel (.XLS and .XLSX) file in C# without installing Microsoft Office?How to create strings containing double quotes in Excel formulas?Return empty cell from formula in ExcelShortcut to Apply a Formula to an Entire Column in ExcelIs it possible to force Excel recognize UTF-8 CSV files automatically?Recalculate unique rank with autofilter?AVERAGEIF(range, criteria) formula that ignores errors in the dataAVERAGEIFS: Weighted rankingsLoop or Array to a lot shifts from rankings?Can SUMPRODUCT be used in an array formula?

Why is it "on the inside" and not "in the inside"?

Exploiting the delay when a festival ticket is scanned

Boots or trail runners with reference to blisters?

My employer is refusing to give me the pay that was advertised after an internal job move

What is the source of this clause, often used to mark the completion of something?

Can I attune a Circlet of Human Perfection to my animated skeletons to allow them to blend in and speak?

Is there a word to describe someone who is, or the state of being, content with hanging around others without interacting with them?

Should I intervene when a colleague in a different department makes students run laps as part of their grade?

Is it bad style if the personal first person narrator of a story dies during said story?

Why put copper in between battery contacts and clamps?

How can flights operated by the same company have such different prices when marketed by another?

Did Vladimir Lenin have a cat?

"Valet parking " or "parking valet"

How to innovate in OR

Was Donald Trump at ground zero helping out on 9-11?

What were the first chips with hardware support for SPI?

Should students have access to past exams or an exam bank?

What language is Raven using for her attack in the new 52?

Why would anyone ever invest in a cash-only etf?

Correct word for a little toy that always stands up?

Embedded C - Most elegant way to insert a delay

How can Paypal know my card is being used in another account?

Solve equation using Mathematica

Why is softmax function used to calculate probabilities although we can divide each value by the sum of the vector?



How to use a rank formula that ignores errors


How do I create an Excel (.XLS and .XLSX) file in C# without installing Microsoft Office?How to create strings containing double quotes in Excel formulas?Return empty cell from formula in ExcelShortcut to Apply a Formula to an Entire Column in ExcelIs it possible to force Excel recognize UTF-8 CSV files automatically?Recalculate unique rank with autofilter?AVERAGEIF(range, criteria) formula that ignores errors in the dataAVERAGEIFS: Weighted rankingsLoop or Array to a lot shifts from rankings?Can SUMPRODUCT be used in an array formula?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am trying to build a rank formula that ignores errors.



I've tried:



=Rank(BN4,(if(iserror(BQ4:BQ31),"",BQ4:BQ31)))


I've also Tried:



 =IF(ISERROR($BQ$4:$BQ$31),"",1+SUMPRODUCT($BP$4:$BP$31=BP4,$BQ$4:$BQ$31>BQ4))


Is There something wrong with the formula? Is there a better way? See image below, the rank formula appears in Col BN. Thanks!



![enter image description here]1










share|improve this question


























  • I found this link from google-ing. excelforum.com/excel-formulas-and-functions/…

    – Mistella
    Mar 26 at 21:43

















0















I am trying to build a rank formula that ignores errors.



I've tried:



=Rank(BN4,(if(iserror(BQ4:BQ31),"",BQ4:BQ31)))


I've also Tried:



 =IF(ISERROR($BQ$4:$BQ$31),"",1+SUMPRODUCT($BP$4:$BP$31=BP4,$BQ$4:$BQ$31>BQ4))


Is There something wrong with the formula? Is there a better way? See image below, the rank formula appears in Col BN. Thanks!



![enter image description here]1










share|improve this question


























  • I found this link from google-ing. excelforum.com/excel-formulas-and-functions/…

    – Mistella
    Mar 26 at 21:43













0












0








0








I am trying to build a rank formula that ignores errors.



I've tried:



=Rank(BN4,(if(iserror(BQ4:BQ31),"",BQ4:BQ31)))


I've also Tried:



 =IF(ISERROR($BQ$4:$BQ$31),"",1+SUMPRODUCT($BP$4:$BP$31=BP4,$BQ$4:$BQ$31>BQ4))


Is There something wrong with the formula? Is there a better way? See image below, the rank formula appears in Col BN. Thanks!



![enter image description here]1










share|improve this question
















I am trying to build a rank formula that ignores errors.



I've tried:



=Rank(BN4,(if(iserror(BQ4:BQ31),"",BQ4:BQ31)))


I've also Tried:



 =IF(ISERROR($BQ$4:$BQ$31),"",1+SUMPRODUCT($BP$4:$BP$31=BP4,$BQ$4:$BQ$31>BQ4))


Is There something wrong with the formula? Is there a better way? See image below, the rank formula appears in Col BN. Thanks!



![enter image description here]1







excel excel-formula






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 26 at 21:25









cybernetic.nomad

3,8972 gold badges13 silver badges26 bronze badges




3,8972 gold badges13 silver badges26 bronze badges










asked Mar 26 at 21:17









austinmbaustinmb

326 bronze badges




326 bronze badges















  • I found this link from google-ing. excelforum.com/excel-formulas-and-functions/…

    – Mistella
    Mar 26 at 21:43

















  • I found this link from google-ing. excelforum.com/excel-formulas-and-functions/…

    – Mistella
    Mar 26 at 21:43
















I found this link from google-ing. excelforum.com/excel-formulas-and-functions/…

– Mistella
Mar 26 at 21:43





I found this link from google-ing. excelforum.com/excel-formulas-and-functions/…

– Mistella
Mar 26 at 21:43












2 Answers
2






active

oldest

votes


















1














Given the spreadsheet below:



enter image description here



You can use the following formula on C2 and drag it:



=IF(ISERR(A2),"",COUNTIF($A$2:$A$7,">"&A2)+1)





share|improve this answer

























  • I think that's what I'm doing? Just w/ sumproduct

    – austinmb
    Mar 26 at 23:21


















0














I think this is what's going on: in your second formula, your Sumproduct is still calculated with the errors. Although the first part your formula tells Excel to return a Blank when calculating the rank of an ERROR, the errors are stil inputted into second part where you actually calculate the rank, and thus Excel will spit out an Error even if it's calculating the rank of a regular number



The formula provided by Lucas above is probably the simplest way. If you must use sumproduct, you should include something in your sumproduct that tells excel to use a blank value if it comes across an error when calculating the some product.



For example, if you're trying to do the sumproduct of A1:A4 and B1:4 but the both ranges have some errors, then you'd use:



 =SUMPRODUCT(IF(ISNA(A1:A4),0,A1:A4),IF(ISNA(B1:B4),0,B1:B4))





share|improve this answer

























  • Usually, when mentioning another's answer in a different one, I add a link (from "share" under their answer). This is because a verbal mentioning can be insufficient if multiple other answers get added; especially since the order of the answers can shift depending on votes.

    – Mistella
    Mar 27 at 13:18











  • Thank you for the tip, makes sense.

    – Eric Johnson
    Mar 27 at 13:59













Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55366328%2fhow-to-use-a-rank-formula-that-ignores-errors%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














Given the spreadsheet below:



enter image description here



You can use the following formula on C2 and drag it:



=IF(ISERR(A2),"",COUNTIF($A$2:$A$7,">"&A2)+1)





share|improve this answer

























  • I think that's what I'm doing? Just w/ sumproduct

    – austinmb
    Mar 26 at 23:21















1














Given the spreadsheet below:



enter image description here



You can use the following formula on C2 and drag it:



=IF(ISERR(A2),"",COUNTIF($A$2:$A$7,">"&A2)+1)





share|improve this answer

























  • I think that's what I'm doing? Just w/ sumproduct

    – austinmb
    Mar 26 at 23:21













1












1








1







Given the spreadsheet below:



enter image description here



You can use the following formula on C2 and drag it:



=IF(ISERR(A2),"",COUNTIF($A$2:$A$7,">"&A2)+1)





share|improve this answer













Given the spreadsheet below:



enter image description here



You can use the following formula on C2 and drag it:



=IF(ISERR(A2),"",COUNTIF($A$2:$A$7,">"&A2)+1)






share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 26 at 21:59









LucasLucas

4078 bronze badges




4078 bronze badges















  • I think that's what I'm doing? Just w/ sumproduct

    – austinmb
    Mar 26 at 23:21

















  • I think that's what I'm doing? Just w/ sumproduct

    – austinmb
    Mar 26 at 23:21
















I think that's what I'm doing? Just w/ sumproduct

– austinmb
Mar 26 at 23:21





I think that's what I'm doing? Just w/ sumproduct

– austinmb
Mar 26 at 23:21













0














I think this is what's going on: in your second formula, your Sumproduct is still calculated with the errors. Although the first part your formula tells Excel to return a Blank when calculating the rank of an ERROR, the errors are stil inputted into second part where you actually calculate the rank, and thus Excel will spit out an Error even if it's calculating the rank of a regular number



The formula provided by Lucas above is probably the simplest way. If you must use sumproduct, you should include something in your sumproduct that tells excel to use a blank value if it comes across an error when calculating the some product.



For example, if you're trying to do the sumproduct of A1:A4 and B1:4 but the both ranges have some errors, then you'd use:



 =SUMPRODUCT(IF(ISNA(A1:A4),0,A1:A4),IF(ISNA(B1:B4),0,B1:B4))





share|improve this answer

























  • Usually, when mentioning another's answer in a different one, I add a link (from "share" under their answer). This is because a verbal mentioning can be insufficient if multiple other answers get added; especially since the order of the answers can shift depending on votes.

    – Mistella
    Mar 27 at 13:18











  • Thank you for the tip, makes sense.

    – Eric Johnson
    Mar 27 at 13:59















0














I think this is what's going on: in your second formula, your Sumproduct is still calculated with the errors. Although the first part your formula tells Excel to return a Blank when calculating the rank of an ERROR, the errors are stil inputted into second part where you actually calculate the rank, and thus Excel will spit out an Error even if it's calculating the rank of a regular number



The formula provided by Lucas above is probably the simplest way. If you must use sumproduct, you should include something in your sumproduct that tells excel to use a blank value if it comes across an error when calculating the some product.



For example, if you're trying to do the sumproduct of A1:A4 and B1:4 but the both ranges have some errors, then you'd use:



 =SUMPRODUCT(IF(ISNA(A1:A4),0,A1:A4),IF(ISNA(B1:B4),0,B1:B4))





share|improve this answer

























  • Usually, when mentioning another's answer in a different one, I add a link (from "share" under their answer). This is because a verbal mentioning can be insufficient if multiple other answers get added; especially since the order of the answers can shift depending on votes.

    – Mistella
    Mar 27 at 13:18











  • Thank you for the tip, makes sense.

    – Eric Johnson
    Mar 27 at 13:59













0












0








0







I think this is what's going on: in your second formula, your Sumproduct is still calculated with the errors. Although the first part your formula tells Excel to return a Blank when calculating the rank of an ERROR, the errors are stil inputted into second part where you actually calculate the rank, and thus Excel will spit out an Error even if it's calculating the rank of a regular number



The formula provided by Lucas above is probably the simplest way. If you must use sumproduct, you should include something in your sumproduct that tells excel to use a blank value if it comes across an error when calculating the some product.



For example, if you're trying to do the sumproduct of A1:A4 and B1:4 but the both ranges have some errors, then you'd use:



 =SUMPRODUCT(IF(ISNA(A1:A4),0,A1:A4),IF(ISNA(B1:B4),0,B1:B4))





share|improve this answer













I think this is what's going on: in your second formula, your Sumproduct is still calculated with the errors. Although the first part your formula tells Excel to return a Blank when calculating the rank of an ERROR, the errors are stil inputted into second part where you actually calculate the rank, and thus Excel will spit out an Error even if it's calculating the rank of a regular number



The formula provided by Lucas above is probably the simplest way. If you must use sumproduct, you should include something in your sumproduct that tells excel to use a blank value if it comes across an error when calculating the some product.



For example, if you're trying to do the sumproduct of A1:A4 and B1:4 but the both ranges have some errors, then you'd use:



 =SUMPRODUCT(IF(ISNA(A1:A4),0,A1:A4),IF(ISNA(B1:B4),0,B1:B4))






share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 27 at 3:39









Eric JohnsonEric Johnson

284 bronze badges




284 bronze badges















  • Usually, when mentioning another's answer in a different one, I add a link (from "share" under their answer). This is because a verbal mentioning can be insufficient if multiple other answers get added; especially since the order of the answers can shift depending on votes.

    – Mistella
    Mar 27 at 13:18











  • Thank you for the tip, makes sense.

    – Eric Johnson
    Mar 27 at 13:59

















  • Usually, when mentioning another's answer in a different one, I add a link (from "share" under their answer). This is because a verbal mentioning can be insufficient if multiple other answers get added; especially since the order of the answers can shift depending on votes.

    – Mistella
    Mar 27 at 13:18











  • Thank you for the tip, makes sense.

    – Eric Johnson
    Mar 27 at 13:59
















Usually, when mentioning another's answer in a different one, I add a link (from "share" under their answer). This is because a verbal mentioning can be insufficient if multiple other answers get added; especially since the order of the answers can shift depending on votes.

– Mistella
Mar 27 at 13:18





Usually, when mentioning another's answer in a different one, I add a link (from "share" under their answer). This is because a verbal mentioning can be insufficient if multiple other answers get added; especially since the order of the answers can shift depending on votes.

– Mistella
Mar 27 at 13:18













Thank you for the tip, makes sense.

– Eric Johnson
Mar 27 at 13:59





Thank you for the tip, makes sense.

– Eric Johnson
Mar 27 at 13:59

















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55366328%2fhow-to-use-a-rank-formula-that-ignores-errors%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해