Converting Formulas to Ultimate Cell References [IndexMatch, Offset, Indirect]

x0nar

New Member
Joined
May 10, 2016
Messages
34
Hi,
I was wondering if it would possible to convert Formulas to the most final cell reference using VBA Macro.

For eg.
Let's say the formula in Cell H2 is as follows

Code:
=IFERROR(INDEX($D$2:$D$7,MATCH($F2,$C$2:$C$7,0)),"")

Now let's say the evaluation of this index match function directs us to Cell D3 (ie the Value in Cell F2 was same as that in Cell C3).
So would it be possible to convert this formula to
Code:
=D3

As its final evaluation was the value of D3.


To get to this I've tried using Evaluate(ActiveCell.Formula).Address

However it returns me with an error.

Thanks.
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Does this work?

=INDIRECT(CELL("address",OFFSET($D$2,MATCH($F2,$c$2:$c$7,0)-1,0)))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,820
Messages
6,181,157
Members
453,021
Latest member
Justyna P

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