I am at a complete loss

dfreemanii

New Member
Joined
Apr 18, 2015
Messages
4
I am sure this has been asked before but I do not know how to word it for a search. I have a nice little budget put together and am trying to plan for buying a home. Basically I want a cell to auto-update based on the value of another cell. Simple enough right but here is the catch. If I put in ='Sheet1'!A42 in my budget I want cell AA42 to up date with the value for 'Sheet1'!AA42. I was thinking of an IF formula but not sure how to word it. Any ideas? Anything would help, because I would rather change the value of 1 cell than have to change 3 every single time I want to update
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
That's not making a lot of sense.

Are you saying you want all of the formula to look at row 42?

You could try =INDEX(Sheet1!A:A,B1)

Then type 42 into B1.

Does that help?
 
Upvote 0
Thank you for the quick response, and I apologize that I was unclear. I want the formula to look at the entire column A from A17:A999 of sheet1 for a match, then when it finds a match it returns the value of column AA of the matching row. For example: if Sheet2 A17= Sheet1 A39 Sheet2 AA17 would then return the value of Sheet1 AA39 I hope that I explained it better so that I can get the help I am asking for.
 
Upvote 0
That makes more sense now :)

Would the values in column A of sheet 1 be unique?

If not, in the event of duplicate entries found, should the formula return the first result, last result or a sum of all results (assuming that sheet 1 column AA contains numbers)?
 
Upvote 0
Thank you again for the fast response, Yes the values in column A are unique ( dates ) and the values in column AA are numbers ( dollar figures )
 
Upvote 0
In Sheet2 AA17

=INDEX(Sheet1!$AA$17:$AA$999,MATCH(Sheet2!A17,Sheet1!$A$17:$A$999,0))

or

=VLOOKUP(A17,Sheet1!$A$17:$AA$999,27,0)
 
Upvote 0
Out of Rada's 2 suggestions, I would say the first is preferable, even though it might look more complex if you're new to excel.
 
Upvote 0

Forum statistics

Threads
1,215,521
Messages
6,125,305
Members
449,218
Latest member
Excel Master

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