Evaluate R1C1 Formula VBA

mlo356

Board Regular
Joined
Aug 20, 2015
Messages
51
Hi All,

I am trying to use VBA to evaluate an R1C1 style formula and assign the result to a variable instead of having the macro place the formula in a cell, assign a variable to the result, then deleting the content of the cell. The formula is:

Code:
ActiveCell.FormulaR1C1 = "=MATCH(DATE(YEAR(TODAY()),MONTH(TODAY())+1,0),R[1],0)"

R[1] refers to the entire row 3.

Looking at an example I found on this forum, I tried:

Code:
Dim x
Dim y
x = "MATCH(DATE(YEAR(TODAY()),MONTH(TODAY())+1,0),R[1],0)"
y = Application.Evaluate(Application.ConvertFormula(x, xlR1C1, xlA1))


I am probably looking at this all wrong. Any help would be appreciated.

Thanks!!
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!

Forum statistics

Threads
1,216,747
Messages
6,132,482
Members
449,729
Latest member
davelevnt

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