Dynamic formula starting with an address located in a cell value

drom

Well-known Member
Joined
Mar 20, 2005
Messages
528
Office Version
  1. 2021
  2. 2019
  3. 2016
  4. 2013
  5. 2011
  6. 2010
  7. 2007
Hi and Thanks in advance!

I have a cell giving me the address of one other cell
I am using a quite log formula to get this
I am using this because I am trying to use other formulas based in a Pivot table bat my Pivot table chnges the number of columns when i use my slicers.

anyway this does not matter

If i have in Cell B3 say a address like G8

How can I use a Dinamic formula such as:

Offset(G8,0,0,10,1)​

Offset(value(G8),0,0,10,1) does not work

for this eg I say G8 but could be F8, C8 and or...

this is why I need the dinamic range using the Address I get from the cell B3

Thanks!
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Re: Dinamic formula starting with an address located in a cell value

1.

OFFSET(INDIRECT(B3),0,0,10,1)

2. If the formula which produces G8 is an INDEX formula...

OFFSET(INDEX(...),0,0,10,1)
 
Upvote 0
Re: Dinamic formula starting with an address located in a cell value

The Formula thet Gives me G8 is:
=CELL("address";INDEX(5:5;1;MATCH("Partner";5:5;0)))
 
Last edited:
Upvote 0
Re: Dinamic formula starting with an address located in a cell value

The Formula thet Gives me G8 is:
=CELL("address";INDEX(5:5;1;MATCH("Partner";5:5;0)))

Try...

OFFSET(INDEX(5:5;1;MATCH("Partner";5:5;0));0;0;10;1)
 
Upvote 0

Forum statistics

Threads
1,214,947
Messages
6,122,413
Members
449,082
Latest member
tish101

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