Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am trying to creat a roll up sheet. on my data sheet I have multiple
columns of data. F K L R 51160 2 6 3 51160 1 4 1 51162 0 5 2 51162 1 0 3 I am trying to create a formula that will search column F for matching numbers and then add all cooresponding data in column K, L, and R. So cell A1 of my roll up sheet for "51160" will show the total of 17... Any ideas? Thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try
=SUM(SUMIF(F1:F10,51160,INDIRECT({"K1:K10","L1:L10 ","R1:R10"}))) -- Jacob "HeatherMichelle" wrote: I am trying to creat a roll up sheet. on my data sheet I have multiple columns of data. F K L R 51160 2 6 3 51160 1 4 1 51162 0 5 2 51162 1 0 3 I am trying to create a formula that will search column F for matching numbers and then add all cooresponding data in column K, L, and R. So cell A1 of my roll up sheet for "51160" will show the total of 17... Any ideas? Thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this...
=SUMPRODUCT(--(F2:F10=51160),K2:K10+L2:L10+R2:R10) -- Biff Microsoft Excel MVP "HeatherMichelle" wrote in message ... I am trying to creat a roll up sheet. on my data sheet I have multiple columns of data. F K L R 51160 2 6 3 51160 1 4 1 51162 0 5 2 51162 1 0 3 I am trying to create a formula that will search column F for matching numbers and then add all cooresponding data in column K, L, and R. So cell A1 of my roll up sheet for "51160" will show the total of 17... Any ideas? Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Sumproduct with Condition OR Sumproduct with ADDRESS function - HE | Excel Discussion (Misc queries) | |||
SUMPRODUCT | Excel Worksheet Functions | |||
Conditional SUMPRODUCT or SUMPRODUCT with Filters | Excel Worksheet Functions | |||
sumproduct? sumif(sumproduct)? | Excel Worksheet Functions | |||
Sumproduct help | Excel Worksheet Functions |