Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default multiple sheet lookup or match

I have multiple worksheets. If column G on 1st page <"Resolved" I want to
match (or maybe lookup?) column A on 2nd page with column A on 1st page and
returning the value of column G on 2nd page. Data will never be more than 100
rows per page. Formula will be placed in column L.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default multiple sheet lookup or match

Try the below
=IF(G1<"Resolved",VLOOKUP(A1,Sheet2!A:G,7,0),"")


If a match is not found the below formula returns blank; instead of an error
=IF(G1<"Resolved",IF(ISNA(VLOOKUP(A1,Sheet2!A:G,7 ,0)),"",VLOOKUP(A1,Sheet2!A:G,7,0)),"")

If this post helps click Yes
---------------
Jacob Skaria


"Vegas Sara" wrote:

I have multiple worksheets. If column G on 1st page <"Resolved" I want to
match (or maybe lookup?) column A on 2nd page with column A on 1st page and
returning the value of column G on 2nd page. Data will never be more than 100
rows per page. Formula will be placed in column L.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default multiple sheet lookup or match

I finally got it to work-thank you so much! can you tell me what the 7 and 0
are? and what ISNA is...

"Jacob Skaria" wrote:

Try the below
=IF(G1<"Resolved",VLOOKUP(A1,Sheet2!A:G,7,0),"")


If a match is not found the below formula returns blank; instead of an error
=IF(G1<"Resolved",IF(ISNA(VLOOKUP(A1,Sheet2!A:G,7 ,0)),"",VLOOKUP(A1,Sheet2!A:G,7,0)),"")

If this post helps click Yes
---------------
Jacob Skaria


"Vegas Sara" wrote:

I have multiple worksheets. If column G on 1st page <"Resolved" I want to
match (or maybe lookup?) column A on 2nd page with column A on 1st page and
returning the value of column G on 2nd page. Data will never be more than 100
rows per page. Formula will be placed in column L.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default multiple sheet lookup or match

From looking at other posts I figured out the 7 corresponds to column g... Is
it possible to add a secondif statement? So it would be if G1<"Resolved" and
C1 = "x". Thank you

"Vegas Sara" wrote:

I finally got it to work-thank you so much! can you tell me what the 7 and 0
are? and what ISNA is...

"Jacob Skaria" wrote:

Try the below
=IF(G1<"Resolved",VLOOKUP(A1,Sheet2!A:G,7,0),"")


If a match is not found the below formula returns blank; instead of an error
=IF(G1<"Resolved",IF(ISNA(VLOOKUP(A1,Sheet2!A:G,7 ,0)),"",VLOOKUP(A1,Sheet2!A:G,7,0)),"")

If this post helps click Yes
---------------
Jacob Skaria


"Vegas Sara" wrote:

I have multiple worksheets. If column G on 1st page <"Resolved" I want to
match (or maybe lookup?) column A on 2nd page with column A on 1st page and
returning the value of column G on 2nd page. Data will never be more than 100
rows per page. Formula will be placed in column L.

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default multiple sheet lookup or match

=IF(AND(G1<"Resolved",C1="x"),VLOOKUP(A1,Sheet2!A :G,7,0),"")

If this post helps click Yes
---------------
Jacob Skaria


"Vegas Sara" wrote:

From looking at other posts I figured out the 7 corresponds to column g... Is
it possible to add a secondif statement? So it would be if G1<"Resolved" and
C1 = "x". Thank you

"Vegas Sara" wrote:

I finally got it to work-thank you so much! can you tell me what the 7 and 0
are? and what ISNA is...

"Jacob Skaria" wrote:

Try the below
=IF(G1<"Resolved",VLOOKUP(A1,Sheet2!A:G,7,0),"")


If a match is not found the below formula returns blank; instead of an error
=IF(G1<"Resolved",IF(ISNA(VLOOKUP(A1,Sheet2!A:G,7 ,0)),"",VLOOKUP(A1,Sheet2!A:G,7,0)),"")

If this post helps click Yes
---------------
Jacob Skaria


"Vegas Sara" wrote:

I have multiple worksheets. If column G on 1st page <"Resolved" I want to
match (or maybe lookup?) column A on 2nd page with column A on 1st page and
returning the value of column G on 2nd page. Data will never be more than 100
rows per page. Formula will be placed in column L.



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
Index lookup with multiple match criteria Vance K[_2_] Excel Worksheet Functions 5 July 18th 09 07:08 AM
Lookup and match then return data from another sheet Charlie510 Excel Worksheet Functions 6 October 23rd 08 09:14 PM
lookup single value in one sheet, return multiple results from theother sheet Chuck[_3_] Excel Worksheet Functions 1 April 4th 08 06:17 AM
Check if 2 cells match on another sheet then lookup value sarahmarsden Excel Worksheet Functions 1 October 20th 06 12:19 PM
Double and Multiple Lookup Using the MATCH Function Charles793 Excel Worksheet Functions 0 May 11th 06 01:46 PM


All times are GMT +1. The time now is 07:54 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"