Help with BASIC Excel function! Thanks!

BrendanO

New Member
Joined
Aug 14, 2014
Messages
7
Hi,

Thanks for reading. Here is a SAFE link to the screenshot that explains what I'm trying to do. I warn you....it's very basic, I'm just new to excel! I'm basically using a main worksheet with a list of organizations I'm communicating with. This main sheet details the LAST communication I've had with all of the organizations. For each org on this sheet, I want to populate the data from other worksheets I've created for each individual organization. Each subsequent org worksheet has ALL of the communication history I've had with that org. I want to connect the last communication from an org worksheet to its row in the main worksheet. Check out the screenshot link below for more details. It provides visuals.

View image: screenshot
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
As long as you dont leave and blank rows before the next one in column A on your pages you are pulling data from try:

in MAIN F2 =INDIRECT("Advantage!A"&COUNTA(Advantage!$A$1:$A$400))
in MAIN G2 =INDIRECT("Advantage!B"&COUNTA(Advantage!$A$1:$A$400))
in MAIN H2 =INDIRECT("Advantage!C"&COUNTA(Advantage!$A$1:$A$400))

If you want to copy it down then just copy them down and change both the words "Advantage" to the name of the tab you want to reference, ie
For KIPP: cell F6 =INDIRECT("KIPP!A"&COUNTA(KIPP!$A$1:$A$400))

Also the formula will break after 398 correspondances, if for some crazy reason you have more than that then just change anywhere that it says 400 to something higher.
 
Upvote 0
BrendanO,

Here is another option.

Eg Data...


Excel 2007
ABC
1Advantage School
2DateActionResult
307/01/2014CallHung Up
408/02/2014CallNo Reply
Advantage



Excel 2007
ABCDEFGHIJ
2Advantage08/02/2014CallNo Reply
3DISD05/02/2014textReminder
Main
Cell Formulas
RangeFormula
H2=LOOKUP(9^9,INDIRECT("'"&$A2&"'!A3:A1000"))
I2=LOOKUP("XXXXX",INDIRECT("'"&$A2&"'!B3:B1000"))
J2=LOOKUP("XXXXX",INDIRECT("'"&$A2&"'!C3:C1000"))



NB that the formulas in H J & L are all slightly different.
Once those topmost formulas are ok then they can be copied down.

The INDIRECT function is creating the sheet name from the text in cells A2 , A3, A4 etc so those cells must hold the correct sheet name text.

Hope that helps.
 
Last edited:
Upvote 0
Thank you, Jayem and snakehips! I really appreciate all your help! This project looks great now! I went with Jayem's idea. It worked out fine for what I needed. This is such a useful product now. I plan on using it to create other excel sheets to track projects. Thanks so much to both of you for your help!!
 
Upvote 0

Forum statistics

Threads
1,214,980
Messages
6,122,563
Members
449,088
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top