#1   Report Post  
Posted to microsoft.public.excel.misc
Vic Vic is offline
external usenet poster
 
Posts: 117
Default Complex Look-up

I need to put "Yes" into N2 if my account in D2 is among accounts from sheet
BM cells ranging from D2 thru D500. This formula works:
=IF(COUNTIF(BM!$D$2:$D$500,D2)0,"Yes","")
Now, I need to expand this formula. Once the D cell from BM sheet matched
with N, I need to check that the corresponding G in BM sheet is blank. If
this is the case then I should put "Yes" in N. How can this be done?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 96
Default Complex Look-up

im not sure i follow, but maybe this would work...

=IF(ISNA(VLOOKUP(D3,BM!D:G,4,FALSE)),"",IF(VLOOKUP (D3,BM!D:G,4,FALSE)="","Yes",""))

"Vic" wrote:

I need to put "Yes" into N2 if my account in D2 is among accounts from sheet
BM cells ranging from D2 thru D500. This formula works:
=IF(COUNTIF(BM!$D$2:$D$500,D2)0,"Yes","")
Now, I need to expand this formula. Once the D cell from BM sheet matched
with N, I need to check that the corresponding G in BM sheet is blank. If
this is the case then I should put "Yes" in N. How can this be done?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 96
Default Complex Look-up

or...

=IF(ISNA(VLOOKUP(D2,BM!$D$2:$G$500,4,FALSE)),"",IF (VLOOKUP(D2,BM!$D$2:$G$500,4,FALSE)="","Yes - Blank","Yes"))

"joemeshuggah" wrote:

im not sure i follow, but maybe this would work...

=IF(ISNA(VLOOKUP(D3,BM!D:G,4,FALSE)),"",IF(VLOOKUP (D3,BM!D:G,4,FALSE)="","Yes",""))

"Vic" wrote:

I need to put "Yes" into N2 if my account in D2 is among accounts from sheet
BM cells ranging from D2 thru D500. This formula works:
=IF(COUNTIF(BM!$D$2:$D$500,D2)0,"Yes","")
Now, I need to expand this formula. Once the D cell from BM sheet matched
with N, I need to check that the corresponding G in BM sheet is blank. If
this is the case then I should put "Yes" in N. How can this be done?

  #4   Report Post  
Posted to microsoft.public.excel.misc
Vic Vic is offline
external usenet poster
 
Posts: 117
Default Complex Look-up

Here is the explanation in English:
My summary sheet has a list of about 500 accounts (column N). I need to find
accounts with all issues resolved. In order to do this, for each account I
need to look in BM sheet (Problematic accounts) to see if that account is in
that list in column D. Since account may have more than 1 problem, it is
normal for that account to appear several times in BM sheet. The account is
considered clear of all problems if BM sheet has all occurences of that
account in column D with corresponding cell G being blank. Cell G in BM sheet
has the date when that specific problem was tracked. This field is turned
blank when the problem gets resolved.
Can you please help me with the formula that I need to put in N to find all
clean accounts?
Thank you.

"joemeshuggah" wrote:

or...

=IF(ISNA(VLOOKUP(D2,BM!$D$2:$G$500,4,FALSE)),"",IF (VLOOKUP(D2,BM!$D$2:$G$500,4,FALSE)="","Yes - Blank","Yes"))

"joemeshuggah" wrote:

im not sure i follow, but maybe this would work...

=IF(ISNA(VLOOKUP(D3,BM!D:G,4,FALSE)),"",IF(VLOOKUP (D3,BM!D:G,4,FALSE)="","Yes",""))

"Vic" wrote:

I need to put "Yes" into N2 if my account in D2 is among accounts from sheet
BM cells ranging from D2 thru D500. This formula works:
=IF(COUNTIF(BM!$D$2:$D$500,D2)0,"Yes","")
Now, I need to expand this formula. Once the D cell from BM sheet matched
with N, I need to check that the corresponding G in BM sheet is blank. If
this is the case then I should put "Yes" in N. How can this be done?

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 96
Default Complex Look-up

=IF((SUMPRODUCT(--(BM!$D$2:$D$500=D2),--(BM!$G$2:$G$500<"")))0,"","Yes")

"Vic" wrote:

Here is the explanation in English:
My summary sheet has a list of about 500 accounts (column N). I need to find
accounts with all issues resolved. In order to do this, for each account I
need to look in BM sheet (Problematic accounts) to see if that account is in
that list in column D. Since account may have more than 1 problem, it is
normal for that account to appear several times in BM sheet. The account is
considered clear of all problems if BM sheet has all occurences of that
account in column D with corresponding cell G being blank. Cell G in BM sheet
has the date when that specific problem was tracked. This field is turned
blank when the problem gets resolved.
Can you please help me with the formula that I need to put in N to find all
clean accounts?
Thank you.

"joemeshuggah" wrote:

or...

=IF(ISNA(VLOOKUP(D2,BM!$D$2:$G$500,4,FALSE)),"",IF (VLOOKUP(D2,BM!$D$2:$G$500,4,FALSE)="","Yes - Blank","Yes"))

"joemeshuggah" wrote:

im not sure i follow, but maybe this would work...

=IF(ISNA(VLOOKUP(D3,BM!D:G,4,FALSE)),"",IF(VLOOKUP (D3,BM!D:G,4,FALSE)="","Yes",""))

"Vic" wrote:

I need to put "Yes" into N2 if my account in D2 is among accounts from sheet
BM cells ranging from D2 thru D500. This formula works:
=IF(COUNTIF(BM!$D$2:$D$500,D2)0,"Yes","")
Now, I need to expand this formula. Once the D cell from BM sheet matched
with N, I need to check that the corresponding G in BM sheet is blank. If
this is the case then I should put "Yes" in N. How can this be done?

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
complex color fill conditions- if statements or complex formula? lilly8008 Excel Discussion (Misc queries) 1 December 18th 09 04:57 AM
Complex If then? bpc Excel Worksheet Functions 4 September 24th 09 09:51 PM
Complex SUM vsoler Excel Worksheet Functions 4 September 6th 09 12:57 PM
Complex sum Greshter Excel Discussion (Misc queries) 0 March 9th 07 03:20 AM
Complex Index Match Help (or at least complex to me) Jennifer Reitman Excel Discussion (Misc queries) 3 August 10th 06 08:51 PM


All times are GMT +1. The time now is 11:08 AM.

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"