How to export data from different tabs in Excel
Closed
JSharon
Posts
4
Registration date
Monday March 2, 2015
Status
Member
Last seen
March 3, 2015
-
Mar 2, 2015 at 02:45 PM
JSharon Posts 4 Registration date Monday March 2, 2015 Status Member Last seen March 3, 2015 - Mar 3, 2015 at 02:08 PM
JSharon Posts 4 Registration date Monday March 2, 2015 Status Member Last seen March 3, 2015 - Mar 3, 2015 at 02:08 PM
Related:
- How to export data from different tabs in Excel
- Transfer data from one excel worksheet to another automatically - Guide
- Number to words in excel - Guide
- How to delete icloud tabs - Guide
- How to take screenshot in excel - Guide
- Close all tabs chrome android - Guide
1 response
stan-star
Posts
4
Registration date
Monday March 2, 2015
Status
Member
Last seen
March 3, 2015
1
Mar 2, 2015 at 04:31 PM
Mar 2, 2015 at 04:31 PM
You are on the right track IF there can only be one case# across all target sheets. If that is the case, you need to "Nest" the IF statements.
Mar 2, 2015 at 05:06 PM
Thanks for your prompt reply, I have this now:
=IF(ISNA(VLOOKUP(D30,Analyst_1!B10:G118,2,0)),IF(ISNA(VLOOKUP(D30,Analyst_2!B10:G118,2,0)),VLOOKUP(D30,Analyst_3!B10:G118,2,0),VLOOKUP(D30,Analyst_2!B10:G118,2,0)),VLOOKUP(D30,Analyst_3!B10:G118,2,0))
This is working perfectly, the only problem is that I get a #N/A if there is no data on cell D30, where can I insert the error value to fix it?
THANK YOU!!
Mar 2, 2015 at 06:34 PM
=iferror(IF(ISNA(VLOOKUP(D30,Analyst_1!B10:G118,2,0)),IF(ISNA(VLOOKUP(D30,Analyst_2!B10:G118,2,0)),VLOOKUP(D30,Analyst_3!B10:G118,2,0),VLOOKUP(D30,Analyst_2!B10:G118,2,0)),VLOOKUP(D30,Analyst_3!B10:G118,2,0)),"")
This will simply set the result cell to blank. If you want to display some text, merely insert it between the quotes in my recommendation above.
Mar 3, 2015 at 09:36 AM
Mar 3, 2015 at 11:22 AM
OK, I re-wrote the formula utilizing Iferror as opposed to ISNA and IF . In my small simulation, it seems to work. Give it a try. Good Luck.
IFERROR(VLOOKUP(D30,Analyst_1!B12:G120,2,0),IFERROR(VLOOKUP(D30,Analyst_2!B12:G120,2,0),IFERROR(VLOOKUP(D30,Analyst_3!B12:G120,2,0),"Not Found")))
Mar 3, 2015 at 02:08 PM
Thanks a lot Stan-Star!!! You are the Best!!!