Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 19
Default Need formula assistance ASAP

I need to get a formula for the following:

Search Column "C" for what is in "C4", if "C4" found in Column "C", search
Column "B" for "A6", if "A6" found in Column "B" get the sum from Column "A"

Sounds confusing I know

Please get back to me if you think you may be able to help.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,081
Default Need formula assistance ASAP

Well, by definition whatever is in C4 is in column C, so perhaps that portion
of your question isn't stated correctly. Matter of fact, your entire
question is pretty ambiguous. Can you try to state it a little more clearly,
perhaps with an example?

"Deanna" wrote:

I need to get a formula for the following:

Search Column "C" for what is in "C4", if "C4" found in Column "C", search
Column "B" for "A6", if "A6" found in Column "B" get the sum from Column "A"

Sounds confusing I know

Please get back to me if you think you may be able to help.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 19
Default Need formula assistance ASAP

"A" "B" "C"
1 4 MA
..58 1 BA+15
1 13 MA+30
1 7 MA
1 2 BA
1 1 BA+15
1 1 BA+15

This is what part of my sheet looks like. I need to put numbers in the
below chart with the information above


BA -1 BA BA+15
Associate I II
1 ? ?
1.5
2 ?
2.5 ?

The numbers to the far left refer to Column "A" above, and the "?" marks
need to be completed with the informaiton from all three. (So if Column "C"
is BA+15 and "B" states "Step 1" (indicated by the "1"), the the total from
Column "A" would be 2.58.

"Duke Carey" wrote:

Well, by definition whatever is in C4 is in column C, so perhaps that portion
of your question isn't stated correctly. Matter of fact, your entire
question is pretty ambiguous. Can you try to state it a little more clearly,
perhaps with an example?

"Deanna" wrote:

I need to get a formula for the following:

Search Column "C" for what is in "C4", if "C4" found in Column "C", search
Column "B" for "A6", if "A6" found in Column "B" get the sum from Column "A"

Sounds confusing I know

Please get back to me if you think you may be able to help.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,202
Default Need formula assistance ASAP

I am not 1005 sure of your layout, but see if this helps. Assume your data
is in columns A, B and C as seems indicated and assume you have headers for
these columns so your data starts at A2, B2 and C2. Further assume your
Column "B" State criterion is located in F1 (for this example, that value is
1) and your Column "C" criterion is in F2 (that is, F1 contains, say,
BA+15). This formula will give you the sum you want...

=SUMPRODUCT((C1:C7=$F$2)*(B1:B7=$F$1)*(A1:A7))

Rick


"Deanna" wrote in message
...
"A" "B" "C"
1 4 MA
.58 1 BA+15
1 13 MA+30
1 7 MA
1 2 BA
1 1 BA+15
1 1 BA+15

This is what part of my sheet looks like. I need to put numbers in the
below chart with the information above


BA -1 BA BA+15
Associate I II
1 ? ?
1.5
2 ?
2.5 ?

The numbers to the far left refer to Column "A" above, and the "?" marks
need to be completed with the informaiton from all three. (So if Column
"C"
is BA+15 and "B" states "Step 1" (indicated by the "1"), the the total
from
Column "A" would be 2.58.

"Duke Carey" wrote:

Well, by definition whatever is in C4 is in column C, so perhaps that
portion
of your question isn't stated correctly. Matter of fact, your entire
question is pretty ambiguous. Can you try to state it a little more
clearly,
perhaps with an example?

"Deanna" wrote:

I need to get a formula for the following:

Search Column "C" for what is in "C4", if "C4" found in Column "C",
search
Column "B" for "A6", if "A6" found in Column "B" get the sum from
Column "A"

Sounds confusing I know

Please get back to me if you think you may be able to help.


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,081
Default Need formula assistance ASAP

BAsed on the data you provided, try this formula

=SUMPRODUCT(--(C1:C7="BA+15"),--(B1:B7=1),A1:A7)

If the BA+15 wil reside in a cell off to the side, say D1, and the #1 you're
testing for column B is in cell D2, you can use this formula

=SUMPRODUCT(--(C1:C7=D1),--(B1:B7=D2),A1:A7)



"Deanna" wrote:

"A" "B" "C"
1 4 MA
.58 1 BA+15
1 13 MA+30
1 7 MA
1 2 BA
1 1 BA+15
1 1 BA+15

This is what part of my sheet looks like. I need to put numbers in the
below chart with the information above


BA -1 BA BA+15
Associate I II
1 ? ?
1.5
2 ?
2.5 ?

The numbers to the far left refer to Column "A" above, and the "?" marks
need to be completed with the informaiton from all three. (So if Column "C"
is BA+15 and "B" states "Step 1" (indicated by the "1"), the the total from
Column "A" would be 2.58.

"Duke Carey" wrote:

Well, by definition whatever is in C4 is in column C, so perhaps that portion
of your question isn't stated correctly. Matter of fact, your entire
question is pretty ambiguous. Can you try to state it a little more clearly,
perhaps with an example?

"Deanna" wrote:

I need to get a formula for the following:

Search Column "C" for what is in "C4", if "C4" found in Column "C", search
Column "B" for "A6", if "A6" found in Column "B" get the sum from Column "A"

Sounds confusing I know

Please get back to me if you think you may be able to help.



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,202
Default Need formula assistance ASAP

I am not 1005 sure of your layout, but see if this helps. Assume your data
is in columns A, B and C as seems indicated and assume you have headers for
these columns so your data starts at A2, B2 and C2. Further assume your
Column "B" State criterion is located in F1 (for this example, that value
is 1) and your Column "C" criterion is in F2 (that is, F1 contains, say,
BA+15). This formula will give you the sum you want...

=SUMPRODUCT((C1:C7=$F$2)*(B1:B7=$F$1)*(A1:A7))


LOL... Sure, I said assume your data starts in the second row and what do I
do... I give you the formula for it starting in the first row.

=SUMPRODUCT((C2:C8=$F$2)*(B2:B8=$F$1)*(A2:A8))

By the way, the limiting to Row 8 in the formula is because that is all the
data you provided... change the 8 to the number of the maximum row you
expect to have data in.

Rick

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 19
Default Need formula assistance ASAP

Thank you so much. That's it.

"Rick Rothstein (MVP - VB)" wrote:

I am not 1005 sure of your layout, but see if this helps. Assume your data
is in columns A, B and C as seems indicated and assume you have headers for
these columns so your data starts at A2, B2 and C2. Further assume your
Column "B" State criterion is located in F1 (for this example, that value is
1) and your Column "C" criterion is in F2 (that is, F1 contains, say,
BA+15). This formula will give you the sum you want...

=SUMPRODUCT((C1:C7=$F$2)*(B1:B7=$F$1)*(A1:A7))

Rick


"Deanna" wrote in message
...
"A" "B" "C"
1 4 MA
.58 1 BA+15
1 13 MA+30
1 7 MA
1 2 BA
1 1 BA+15
1 1 BA+15

This is what part of my sheet looks like. I need to put numbers in the
below chart with the information above


BA -1 BA BA+15
Associate I II
1 ? ?
1.5
2 ?
2.5 ?

The numbers to the far left refer to Column "A" above, and the "?" marks
need to be completed with the informaiton from all three. (So if Column
"C"
is BA+15 and "B" states "Step 1" (indicated by the "1"), the the total
from
Column "A" would be 2.58.

"Duke Carey" wrote:

Well, by definition whatever is in C4 is in column C, so perhaps that
portion
of your question isn't stated correctly. Matter of fact, your entire
question is pretty ambiguous. Can you try to state it a little more
clearly,
perhaps with an example?

"Deanna" wrote:

I need to get a formula for the following:

Search Column "C" for what is in "C4", if "C4" found in Column "C",
search
Column "B" for "A6", if "A6" found in Column "B" get the sum from
Column "A"

Sounds confusing I know

Please get back to me if you think you may be able to help.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Formula Help-ASAP Lisa Excel Discussion (Misc queries) 6 June 1st 07 03:31 PM
ASAP - need help with formula! Jane Excel Worksheet Functions 7 February 6th 07 05:51 PM
Complicated formula please help asap! babiigirl Excel Worksheet Functions 8 June 14th 06 04:26 PM
Assistance with Formula Joe D. Excel Worksheet Functions 1 March 11th 06 04:03 AM
Need a Formula ASAP Korie Excel Worksheet Functions 8 October 6th 05 04:48 PM


All times are GMT +1. The time now is 03:38 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"