Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Hi there, I need to input a vertical formula that will retreive info based on a code that could be on one of four tabs. I'd like to develop a work order that will allow me to enter a code and have all related creative information populate. For instance, promotion code 1004 is in Column A on either the Q1, Q2, Q3 or Q4 tab. I need the related creative name located in column G. The promotion code will only appear once on only 1 tab. Can I enter the vertical lookup formula to check all tabs and retreive the information? Jill ![]() -- jillteresa ------------------------------------------------------------------------ jillteresa's Profile: http://www.excelforum.com/member.php...fo&userid=9498 View this thread: http://www.excelforum.com/showthread...hreadid=566745 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Jill,
Yes, you can check and retrieve the information using the VLOOKUP function using nested IFs or better you use IFs and ORs. Do send me a sample worksheet so that I can help you in it. Thanks Shail jillteresa wrote: Hi there, I need to input a vertical formula that will retreive info based on a code that could be on one of four tabs. I'd like to develop a work order that will allow me to enter a code and have all related creative information populate. For instance, promotion code 1004 is in Column A on either the Q1, Q2, Q3 or Q4 tab. I need the related creative name located in column G. The promotion code will only appear once on only 1 tab. Can I enter the vertical lookup formula to check all tabs and retreive the information? Jill ![]() -- jillteresa ------------------------------------------------------------------------ jillteresa's Profile: http://www.excelforum.com/member.php...fo&userid=9498 View this thread: http://www.excelforum.com/showthread...hreadid=566745 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You should be able to do that quite easily. If you want to brush up on
your VLOOKUP formulas I have written a tutorial to explain the formulas working:- http://teachr.blogspot.com/2006/07/v...ermediate.html If this doesnt help, feel free to email me the file at and I will be happy to help. Regards, Matt http://teachr.blogspot.com - For Excel Tips and Tutorials jillteresa wrote: Hi there, I need to input a vertical formula that will retreive info based on a code that could be on one of four tabs. I'd like to develop a work order that will allow me to enter a code and have all related creative information populate. For instance, promotion code 1004 is in Column A on either the Q1, Q2, Q3 or Q4 tab. I need the related creative name located in column G. The promotion code will only appear once on only 1 tab. Can I enter the vertical lookup formula to check all tabs and retreive the information? Jill ![]() -- jillteresa ------------------------------------------------------------------------ jillteresa's Profile: http://www.excelforum.com/member.php...fo&userid=9498 View this thread: http://www.excelforum.com/showthread...hreadid=566745 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=IF(ISNA(VLK1),IF(ISNA(VLK2),IF(ISNA(VLK3),IF(ISNA (VLK4),"No match",VLK4),VLK3),VLK2),VLK1) Where VLK1-4 are named formulae (do Insert=Name=Define==Refers to: For VLK1 Refer to: =VLOOKUP(Sheet1!$A1,'Q1'!$A:$G,7,0) For VLK2 Refers to:=VLOOKUP(Sheet1!$A1,'Q2'!$A:$G,7,0) etc Assumes search parameter is in Column A of Sheet1 (A1 to start). Change Sheet and column as needed. Copy down column as required. OR replace the VLKn with the corresponding VLOOKUP statements in the formula. HTH "jillteresa" wrote: Hi there, I need to input a vertical formula that will retreive info based on a code that could be on one of four tabs. I'd like to develop a work order that will allow me to enter a code and have all related creative information populate. For instance, promotion code 1004 is in Column A on either the Q1, Q2, Q3 or Q4 tab. I need the related creative name located in column G. The promotion code will only appear once on only 1 tab. Can I enter the vertical lookup formula to check all tabs and retreive the information? Jill ![]() -- jillteresa ------------------------------------------------------------------------ jillteresa's Profile: http://www.excelforum.com/member.php...fo&userid=9498 View this thread: http://www.excelforum.com/showthread...hreadid=566745 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Thanks Toppers, worked perfrectly. -- jillteresa ------------------------------------------------------------------------ jillteresa's Profile: http://www.excelforum.com/member.php...fo&userid=9498 View this thread: http://www.excelforum.com/showthread...hreadid=566745 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Dynamic Range with unused formula messing up x axis on dynamic graph | Charts and Charting in Excel | |||
Match then lookup | Excel Worksheet Functions | |||
How do I lookup a value in a array that is not in ascending order | Excel Worksheet Functions | |||
formula to lookup table in another Worksheet please | Excel Worksheet Functions | |||
How do I have a formula lookup a sheetname? | Excel Worksheet Functions |