多重條件的index陣列 in google excel - Google

Table of Contents

※ [本文轉錄自 Office 看板 #1FrZV1PT ]

作者: cluss (高速離心機) 看板: Office
標題: [算表] 多重條件的index陣列
時間: Tue Jun 12 02:23:58 2012

軟體: google excel

版本: google


不知道來這裡發對不對,為了找出更簡單的方法只好來這裡求助各位高手

假設我有一個資料結構如下

A代號 B 型號 C數值 D欄位
1 type A 45
2 type B 36
3 tpye B 12
4 type A 22
5 type C 16
6 type D 21
7 type A 48

我想要D攔列出type A的數值大於30的代號

我在excel裡面實作是
{index(A:A,small(if(index(C:C,small(if(B:B="type A"),...接續
row(B:B)),row())>30,row(C:C)),row()))}

這樣的文法可以在excel中被實現,可是Google的excel似乎沒辦法透過arrayformula實現

請問有沒有可以達到此一結果的其他寫法???

PS.資料量很多,至少2000-3000筆,所以用vlook好像不適合

--

All Comments

Kelly avatarKelly2012-06-17
試試gql? 例如 =query(A:D,"select B,C where C>30")