Address Function Cell Reference Help

ajt35

New Member
Joined
Jul 13, 2010
Messages
6
Can anyone help me with adding to an address reference? I am trying to add a cell to an address reference. For example, the using the address function a cell returns the text $AH$11. I would like to subtract 3 to that reference so it becomes $AH$8. Ultimately, I will use a minimum function with these two cells as the range. Is this possible? Can anyone help?
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
How are you obtaining that address reference, e.g. ADDRESS(11,34) produces $AH$11
but ADDRESS(11-3,34) will give you the result you want.

This works
Code:
=LEFT(A1,FIND("$",A1,2))&RIGHT(A1,LEN(A1)-FIND("$",A1,2))-3
 
Upvote 0
First off, why are you using the ADDRESS function?

Why, not just:

=MIN($AH$8,$AH$11)
 
Upvote 0
Thanks for your reply HOTPEPPER. It is a long story, but that won't work for what I am trying to do. Thanks!
 
Upvote 0
Can't say as I understand, but you could use INDIRECT and OFFSET. Assuming your address in A1:

=MIN(INDIRECT(A1),OFFSET(INDIRECT(A1),,-3))
 
Upvote 0

Forum statistics

Threads
1,214,636
Messages
6,120,664
Members
448,976
Latest member
sweeberry

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