• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

extract rows from different sheets to one sheet using date as reference PLEASE

Advanced Filters, PivotTables, or VB. Without seeing any other info, setting up the Advanced Filter to run off of a macro is probably the fastest.
 
Hi, gobal!


First of all welcome to Chandoo's website Excel forums. Thank you for your joining us and glad to have you here.


As a starting point I'd recommend you to read the three first green sticky topics at this forums main page. There you'll find general guidelines about how this site and community operates (introducing yourself, posting files, netiquette rules, and so on).


Among them you're prompted to perform searches within this site before posting, because maybe your question had been answered yet.


Feel free to play with different keywords so as to be led thru a wide variety of articles and posts, and if you don't find anything that solves your problem or guides you towards a solution, you'll always be welcome back here. Tell us what you've done, consider uploading a sample file as recommended, and somebody surely will read your post and help you.


And about your question...


If you haven't performed yet the search herein, try going to the topmost right zone of this page (Custom Search), type different related keywords and press Search button. You'd retrieve many links from this website, maybe you find useful information and even the solution. If not please advise so as people who read it could get back to you as soon as possible.


As Luke M and Montrey wrote, it'd be very helpful if you elaborate a bit more, or even indeed if you post a sample workbook (please refer to second green sticky post for guidelines).


Regards!
 
Dear Sri.. Thanks for your reply. I wish you can help me with the below attached file. I am a finance guy and i a beginner in Excel and I am amazed withe the template and formulas you guys use. I am getting started with simple formulas and codes.


Montrey & Luke : If you find some time please help me with the attached.


Link : http://sdrv.ms/OcHLzV
 
Try this in cells C7 of the worksheet 'Master'


=INDEX(OFFSET('Associate 1'!$B$1,4,1,COUNT('Associate 1'!$B:$B),1), MATCH($B$2, OFFSET('Associate 1'!$B$1,4,0,COUNT('Associate 1'!$B:$B),1),0), 1)


and replace "1" with 2,3, etc. as below for the rest of the cells.

formula in D7=INDEX(OFFSET('Associate 1'!$B$1,4,2,COUNT('Associate 1'!$B:$B),1), MATCH($B$2, OFFSET('Associate 1'!$B$1,4,0,COUNT('Associate 1'!$B:$B),1),0), 1)


formula in E7=INDEX(OFFSET('Associate 1'!$B$1,4,3,COUNT('Associate 1'!$B:$B),1), MATCH($B$2, OFFSET('Associate 1'!$B$1,4,0,COUNT('Associate 1'!$B:$B),1),0), 1)


Hope some XL guru simplifies it further. But I'd have structured my XL worksheets slightly differently to yours . They do not typically follow the DB design principles.


Regards,


Ninad.
 
Hi, gobal!


In sheet Master in cell C7 type and copy across and down as needed:

=SI.ERROR(BUSCARV($B$2;INDIRECTO("'"&$B7&"'!$B$2:$BI$1000");COLUMNA()-1;FALSO);"-") -----> in english: =IFERROR(VLOOKUP($B$2,INDIRECT("'"&$B7&"'!$B$2:$BI$1000"),COLUMN()-1,FALSE),"-")


Regards!
 
@ninad7

Hi!

Your method is equally valid, only a bit longer the formula, and you can unify them using the INDIRECT function too.

Regards!
 
Back
Top