How to find the 2nd largest number in cells that are not row in the same column

2023-09-21T13:08:22.49+00:00

Good evening to all,

In an Excel workbook, to find the second largest number in cells that are not

row in the same column, we use the formula : =LARGE((A10;B15;D12);2)

Now when we want to find the second largest number in cells in different sheets,

we use the formula : =LARGE((Sheet1!A5;Sheet2!A5;Sheet3!A5);2) but it doesn't work!

Is there something else?

Thanks in advance

Microsoft 365 and Office Development Other
Microsoft 365 and Office Install, redeem, activate For business Windows
Microsoft 365 and Office Excel For business Windows
{count} votes

1 answer

Sort by: Most helpful
  1. Barry Schwarz 3,746 Reputation points
    2023-09-21T19:33:02.1233333+00:00

    You need to enclose the sheet names in single quotation marks. My system does not accept semicolons as argument separators. Use commas.

    =LARGE(('Sheet1'!A5,'Sheet2'!A5,...),2)
    

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.