Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Helpppp!
Sheet 1 is something like this Colum A6 to A51 is a customer name Column B6 to B51 is a industry region in Column H6 to H51 I need a result based on the first two criteria Customer name and industry region from Sheet 2 Sheet 2 is something like this Colum A6 to A51 is a customer name Column B6 to B51 is a industry region in column I6 to I51 I have the budget figure than needs to go back into sheet 1. I can not join the two criteria because of an interactive report i need to generate later. Thanks for any help. Cinny |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=SUMPRODUCT(--(Sheet2!A$6:A$51=A6)--(Sheet2!B$6:B$51=B6),Sheet2!I$6:I$51) Copy down as needed. Biff "Cinny" wrote in message ... Hi Helpppp! Sheet 1 is something like this Colum A6 to A51 is a customer name Column B6 to B51 is a industry region in Column H6 to H51 I need a result based on the first two criteria Customer name and industry region from Sheet 2 Sheet 2 is something like this Colum A6 to A51 is a customer name Column B6 to B51 is a industry region in column I6 to I51 I have the budget figure than needs to go back into sheet 1. I can not join the two criteria because of an interactive report i need to generate later. Thanks for any help. Cinny |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks for the information, however if the base data in Sheet 1 changes,
meaning customer name and industry how does the formula no that it needs to look for a different value in sheet 2? M "T. Valko" wrote: Try this: =SUMPRODUCT(--(Sheet2!A$6:A$51=A6)--(Sheet2!B$6:B$51=B6),Sheet2!I$6:I$51) Copy down as needed. Biff "Cinny" wrote in message ... Hi Helpppp! Sheet 1 is something like this Colum A6 to A51 is a customer name Column B6 to B51 is a industry region in Column H6 to H51 I need a result based on the first two criteria Customer name and industry region from Sheet 2 Sheet 2 is something like this Colum A6 to A51 is a customer name Column B6 to B51 is a industry region in column I6 to I51 I have the budget figure than needs to go back into sheet 1. I can not join the two criteria because of an interactive report i need to generate later. Thanks for any help. Cinny |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I see that you've posted this a few times and you're having a hard time
understanding the replies you've recieved. Have you actually tried any of the suggestions? Did any of the suggestions work? If none of the suggestions worked then we are not understanding what you want to do. Thanks for the information, however if the base data in Sheet 1 changes, meaning customer name and industry how does the formula no that it needs to look for a different value in sheet 2? The formula tests the contents of the cells on sheet2 to see which, if any, match the cells on sheet1. If you change the contents of the cells on either sheet it will not affect how the formula works. Biff "Cinny" wrote in message ... Thanks for the information, however if the base data in Sheet 1 changes, meaning customer name and industry how does the formula no that it needs to look for a different value in sheet 2? M "T. Valko" wrote: Try this: =SUMPRODUCT(--(Sheet2!A$6:A$51=A6)--(Sheet2!B$6:B$51=B6),Sheet2!I$6:I$51) Copy down as needed. Biff "Cinny" wrote in message ... Hi Helpppp! Sheet 1 is something like this Colum A6 to A51 is a customer name Column B6 to B51 is a industry region in Column H6 to H51 I need a result based on the first two criteria Customer name and industry region from Sheet 2 Sheet 2 is something like this Colum A6 to A51 is a customer name Column B6 to B51 is a industry region in column I6 to I51 I have the budget figure than needs to go back into sheet 1. I can not join the two criteria because of an interactive report i need to generate later. Thanks for any help. Cinny |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi
Yes I accidently posted twice. Anyway, I have tried the below formula however I get back a #value! in the cell, the formula is =SUMPRODUCT(--(Budget!$A$12:$A$121=A6)--(Budget!$B$12:$B$121=B6),Budget!$C$12:$C$1211), have I done a typo do you think, what does #value mean? "T. Valko" wrote: I see that you've posted this a few times and you're having a hard time understanding the replies you've recieved. Have you actually tried any of the suggestions? Did any of the suggestions work? If none of the suggestions worked then we are not understanding what you want to do. Thanks for the information, however if the base data in Sheet 1 changes, meaning customer name and industry how does the formula no that it needs to look for a different value in sheet 2? The formula tests the contents of the cells on sheet2 to see which, if any, match the cells on sheet1. If you change the contents of the cells on either sheet it will not affect how the formula works. Biff "Cinny" wrote in message ... Thanks for the information, however if the base data in Sheet 1 changes, meaning customer name and industry how does the formula no that it needs to look for a different value in sheet 2? M "T. Valko" wrote: Try this: =SUMPRODUCT(--(Sheet2!A$6:A$51=A6)--(Sheet2!B$6:B$51=B6),Sheet2!I$6:I$51) Copy down as needed. Biff "Cinny" wrote in message ... Hi Helpppp! Sheet 1 is something like this Colum A6 to A51 is a customer name Column B6 to B51 is a industry region in Column H6 to H51 I need a result based on the first two criteria Customer name and industry region from Sheet 2 Sheet 2 is something like this Colum A6 to A51 is a customer name Column B6 to B51 is a industry region in column I6 to I51 I have the budget figure than needs to go back into sheet 1. I can not join the two criteria because of an interactive report i need to generate later. Thanks for any help. Cinny |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
The formula that you have posted either has a typo but if it's not a typo
then I can see why you're getting an error: All ranges must be the same size: Budget!$A$12:$A$121 Budget!$B$12:$B$121 Budget!$C$12:$C$1211 Budget!$C$12:$C$1211 is not the same size as the other ranges. This will cause a #VALUE! error. Biff "Cinny" wrote in message ... Hi Yes I accidently posted twice. Anyway, I have tried the below formula however I get back a #value! in the cell, the formula is =SUMPRODUCT(--(Budget!$A$12:$A$121=A6)--(Budget!$B$12:$B$121=B6),Budget!$C$12:$C$1211), have I done a typo do you think, what does #value mean? "T. Valko" wrote: I see that you've posted this a few times and you're having a hard time understanding the replies you've recieved. Have you actually tried any of the suggestions? Did any of the suggestions work? If none of the suggestions worked then we are not understanding what you want to do. Thanks for the information, however if the base data in Sheet 1 changes, meaning customer name and industry how does the formula no that it needs to look for a different value in sheet 2? The formula tests the contents of the cells on sheet2 to see which, if any, match the cells on sheet1. If you change the contents of the cells on either sheet it will not affect how the formula works. Biff "Cinny" wrote in message ... Thanks for the information, however if the base data in Sheet 1 changes, meaning customer name and industry how does the formula no that it needs to look for a different value in sheet 2? M "T. Valko" wrote: Try this: =SUMPRODUCT(--(Sheet2!A$6:A$51=A6)--(Sheet2!B$6:B$51=B6),Sheet2!I$6:I$51) Copy down as needed. Biff "Cinny" wrote in message ... Hi Helpppp! Sheet 1 is something like this Colum A6 to A51 is a customer name Column B6 to B51 is a industry region in Column H6 to H51 I need a result based on the first two criteria Customer name and industry region from Sheet 2 Sheet 2 is something like this Colum A6 to A51 is a customer name Column B6 to B51 is a industry region in column I6 to I51 I have the budget figure than needs to go back into sheet 1. I can not join the two criteria because of an interactive report i need to generate later. Thanks for any help. Cinny |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Sorry I forgot to ask, does it make a difference to the formula if the
columns A & B are text fields? "T. Valko" wrote: I see that you've posted this a few times and you're having a hard time understanding the replies you've recieved. Have you actually tried any of the suggestions? Did any of the suggestions work? If none of the suggestions worked then we are not understanding what you want to do. Thanks for the information, however if the base data in Sheet 1 changes, meaning customer name and industry how does the formula no that it needs to look for a different value in sheet 2? The formula tests the contents of the cells on sheet2 to see which, if any, match the cells on sheet1. If you change the contents of the cells on either sheet it will not affect how the formula works. Biff "Cinny" wrote in message ... Thanks for the information, however if the base data in Sheet 1 changes, meaning customer name and industry how does the formula no that it needs to look for a different value in sheet 2? M "T. Valko" wrote: Try this: =SUMPRODUCT(--(Sheet2!A$6:A$51=A6)--(Sheet2!B$6:B$51=B6),Sheet2!I$6:I$51) Copy down as needed. Biff "Cinny" wrote in message ... Hi Helpppp! Sheet 1 is something like this Colum A6 to A51 is a customer name Column B6 to B51 is a industry region in Column H6 to H51 I need a result based on the first two criteria Customer name and industry region from Sheet 2 Sheet 2 is something like this Colum A6 to A51 is a customer name Column B6 to B51 is a industry region in column I6 to I51 I have the budget figure than needs to go back into sheet 1. I can not join the two criteria because of an interactive report i need to generate later. Thanks for any help. Cinny |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Makes no difference.
Biff "Cinny" wrote in message ... Sorry I forgot to ask, does it make a difference to the formula if the columns A & B are text fields? "T. Valko" wrote: I see that you've posted this a few times and you're having a hard time understanding the replies you've recieved. Have you actually tried any of the suggestions? Did any of the suggestions work? If none of the suggestions worked then we are not understanding what you want to do. Thanks for the information, however if the base data in Sheet 1 changes, meaning customer name and industry how does the formula no that it needs to look for a different value in sheet 2? The formula tests the contents of the cells on sheet2 to see which, if any, match the cells on sheet1. If you change the contents of the cells on either sheet it will not affect how the formula works. Biff "Cinny" wrote in message ... Thanks for the information, however if the base data in Sheet 1 changes, meaning customer name and industry how does the formula no that it needs to look for a different value in sheet 2? M "T. Valko" wrote: Try this: =SUMPRODUCT(--(Sheet2!A$6:A$51=A6)--(Sheet2!B$6:B$51=B6),Sheet2!I$6:I$51) Copy down as needed. Biff "Cinny" wrote in message ... Hi Helpppp! Sheet 1 is something like this Colum A6 to A51 is a customer name Column B6 to B51 is a industry region in Column H6 to H51 I need a result based on the first two criteria Customer name and industry region from Sheet 2 Sheet 2 is something like this Colum A6 to A51 is a customer name Column B6 to B51 is a industry region in column I6 to I51 I have the budget figure than needs to go back into sheet 1. I can not join the two criteria because of an interactive report i need to generate later. Thanks for any help. Cinny |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Using rounded time with vlookup | Excel Discussion (Misc queries) | |||
First Time Error Using VLOOKUP | Excel Discussion (Misc queries) | |||
Using VLOOKUP with a Date and Time | Excel Discussion (Misc queries) | |||
time formatting and time categorizing (vlookup or data validation) | Excel Worksheet Functions | |||
time formatting and time categorizing (vlookup or data validation) | Excel Worksheet Functions |