Ho una tabella semplice con un certo importo e intervallo in secondi per data e nome del prodotto.Pivot Formula calcolata: SUM (Field1)/AVG (Field2)
Month | Product | Amount | Interval in sec
------------------------------------------
05-'12| Prod A | 10 | 5
05-'12| Prod A | 3 | 5
05-'12| Prod B | 4 | 5
05-'12| Prod C | 13 | 5
05-'12| Prod C | 5 | 5
Da questa tabella che ho derivato una tabella pivot con SUM (Somma), MEDIA (Intervallo in sec) per mese e prodotto.
Month | Product | SUM of Amount | AVG of Interval in sec
--------------------------------------------------------
05-'12| Prod A | 13 | 5
05-'12| Prod B | 4 | 5
05-'12| Prod C | 18 | 5
Fin qui tutto bene. Ora voglio aggiungere una colonna in più alla mia tabella pivot con il risultato di SUM di importo/AVG di intervallo in secondi.
L'aggiunta di un valore calcolato =SUM(Amount)/AVERAGE(Interval)
non fornisce i valori corretti. Excel mi dà:
Month | Product | SUM of Amount | AVG of Interval in sec | Amount per sec
-------------------------------------------------------------------------
05-'12| Prod A | 13 | 5 | 1.3
05-'12| Prod B | 4 | 5 | 0.8
05-'12| Prod C | 18 | 5 | 1.8
Quello che in realtà sta facendo è = SUM (Somma)/SUM (Intervallo in secondi) per ogni mese e prodotto in base ai valori della prima tabella. Ma sto cercando:
Month | Product | SUM of Amount | AVG of Interval in sec | Amount per sec
-------------------------------------------------------------------------
05-'12| Prod A | 13 | 5 | 2.6
05-'12| Prod B | 4 | 5 | 0.8
05-'12| Prod C | 18 | 5 | 3.6
Così letteralmente dividere campo pivot 'somma degli importi' da campo pivot 'AVG di Intervallo in secondi'.
Come raggiungere questo obiettivo?
Meta domanda: le domande per utenti esperti di Excel come questa sono più adatte a StackOverflow, SuperUser o ad altri siti StackExchange? – StockB