我需要一些幫助,下面的要求得到一個細胞的最高值2:Excel公式 - 如何基於另一種細胞
原始數據
A B C
-------------------------------------
1 | Opp | Vendor | Amount |
|-------------|-------------|---------|
2 | 101 | Vendor1 | 100000 |
3 | 101 | Vendor2 | 5000 |
4 | 103 | Vendor1 | 30000 |
5 | 103 | Vendor2 | 5000 |
6 | 103 | Vendor3 | 50000 |
輸出表
A B C D E
---------------------------------------------------------
1 | Opp | MainVendor | Amount1 | 2Vendor | Amount2 |
|-------------|-------------|---------|---------|---------|
2 | 101 | Vendor1 | 100000 | Vendor2 | 5000 |
3 | 103 | Vendor3 | 50000 | Vendor1 | 30000 |
- MainVendor:供應商的最高金額
- Amount1:量MainVendor
- 2Vendor:第二高的供應商
- AMOUNT2:量2Vendor
我只能使用以下數組公式獲取Amount1值:
{=MAX(IF(A:A=[@[Opp]];C:C))}
列C.
我未能獲取值列乙,d & ê。
任何幫助將非常感激。
什麼版本的Excel? –
嗨羅恩!我使用excel 2010版本 –
@RonRosenfeld我很確定這個問題是[this one]的近似重複(http://stackoverflow.com/questions/22083331/excel-vlookup-with-multiple-criteria) 。今天有另一個重複。必須是那些日子之一。 – vknowles