Using a variable in a vba formula

VanMn

New Member
Joined
Jan 1, 2004
Messages
37
I am missing something that is probably basic since I am not an expert in VBA.I would like to have the user input a variable number that is used in a formula. In the simplified example below I would like the formula that is place in cell A1 to include whatever number the input box declares. Instead, I see the letter "x", not the number that "x" is to represent.

Sub Macro1()

Dim X As Integer
X = InputBox("Type Number here")

Range("A1").Select
ActiveCell.FormulaR1C1 = "=(100*X)/2"

End Sub
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Hi,

You have to contruct the formula and separate the VBA variable using ampersands (&).

Code:
Sub Macro1()
Dim X As Integer

X = InputBox("Type Number here")
Range("A1").FormulaR1C1 = "=(100*" & X & ")/2"

End Sub
 
Upvote 0

Forum statistics

Threads
1,215,479
Messages
6,125,043
Members
449,206
Latest member
Healthydogs

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