web-dev-qa-db-ja.com

Googleスプレッドシート-1つのセルでのvlookupの合計

ブレインフリーズを打つ、それを理解することはできません。

問題:

I can't figure out how to add together Table#1 Sam WC 
results as a Nice table for Table#2. What I need is the results in Table#2.

表1:

| Unique      | Worker | Object   | Time |
|-------------|--------|----------|------|
| Sam WC      | Sam    | WC       | 1.0  |
| Ian WC      | Ian    | WC       | 1.0  |
| Sam WC      | Sam    | WC       | 2.0  | 
| Sam Kitchen | Sam    | Kitchen  | 4.0  | 
| Ian Kitchen | Ian    | Kitchen  | 4.0  |

表#2:

| Object      | Sam    | Ian   |
|-------------|--------|-------|
| WC          | 3.0    | 1.0   |
| Kitchen     | 4.0    | 4.0   |

これまでの私の解決策:

I used VLOOKUP, "Unique" field and referred to Time

Only problem it obviously displayed only one result and 
didn't add Sam WC total time together. So instead of 3.0 I saw 1.0.

私の式:

=IFERROR(VLOOKUP(Table#2 Sam+WC,Table#1,4,FALSE),"")
1
Dicio Est

ヘルプを投稿するとすぐに、自分で解決できます。 :/

まさにこれには気の利いた式があります。

SUMIFを使用すると、範囲(一意のID列)を選択し、条件(単一の一意のID)を選択してから、数値の範囲を選択してSUMをカウントできます。

1
Dicio Est