ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Using Input Box results in a formula (https://www.excelbanter.com/excel-programming/285176-using-input-box-results-formula.html)

PaulSinki[_2_]

Using Input Box results in a formula
 
Hi, I was hoping someone could help me.
I've got a macro that asks the user for two inputs, defined as MyValue
and MyValue2. How do I use the results in a formula though?
This is the code that I have currently:

MyValue1 = Application.InputBox("How many days is the current event?")
MyValue2 = Application.InputBox("How far through the current even
are you?")
Range("Y1").Select
ActiveCell.FormulaR1C1 = "=[MyValue1]/[MyValue2]"

However, it crashes out on putting the formula in. How do I correctl
call the results of MyValue1 & 2 and put them into a formula?

Any help greatly appreciated!
Thanks,
Pau

--
Message posted from http://www.ExcelForum.com


Izar Arcturus

Using Input Box results in a formula
 
Try this:

Range("Y1").Select
ActiveCell.Value = MyValue1/MyValue2

-IA

-----Original Message-----
Hi, I was hoping someone could help me.
I've got a macro that asks the user for two inputs,

defined as MyValue1
and MyValue2. How do I use the results in a formula

though?
This is the code that I have currently:

MyValue1 = Application.InputBox("How many days is the

current event?")
MyValue2 = Application.InputBox("How far through the

current event
are you?")
Range("Y1").Select
ActiveCell.FormulaR1C1 = "=[MyValue1]/[MyValue2]"

However, it crashes out on putting the formula in. How do

I correctly
call the results of MyValue1 & 2 and put them into a

formula?

Any help greatly appreciated!
Thanks,
Paul


---
Message posted from http://www.ExcelForum.com/

.


Don Guillett[_4_]

Using Input Box results in a formula
 
Sub dividedays()
Range("b1").Value = InputBox("How many days in event") / InputBox("How far
through")
End Sub

Don Guillett
SalesAid Software

"PaulSinki" wrote in message
...
Hi, I was hoping someone could help me.
I've got a macro that asks the user for two inputs, defined as MyValue1
and MyValue2. How do I use the results in a formula though?
This is the code that I have currently:

MyValue1 = Application.InputBox("How many days is the current event?")
MyValue2 = Application.InputBox("How far through the current event
are you?")
Range("Y1").Select
ActiveCell.FormulaR1C1 = "=[MyValue1]/[MyValue2]"

However, it crashes out on putting the formula in. How do I correctly
call the results of MyValue1 & 2 and put them into a formula?

Any help greatly appreciated!
Thanks,
Paul


---
Message posted from
http://www.ExcelForum.com/




Gord Dibben

Using Input Box results in a formula
 
Paul

Why do you need a formula entered into Y1?

You can enter the computed value directly.

Public Sub qwerty()
Dim MyValue1 As Long
Dim MyValue2 As Long
MyValue1 = InputBox("How many days is the current event?")
MyValue2 = InputBox("How far through the current event are you?")
Range("Y1").Select
ActiveCell.Value = MyValue1 / MyValue2
End Sub

Gord Dibben Excel MVP

On Thu, 11 Dec 2003 11:07:59 -0600, PaulSinki
wrote:

Hi, I was hoping someone could help me.
I've got a macro that asks the user for two inputs, defined as MyValue1
and MyValue2. How do I use the results in a formula though?
This is the code that I have currently:

MyValue1 = Application.InputBox("How many days is the current event?")
MyValue2 = Application.InputBox("How far through the current event
are you?")
Range("Y1").Select
ActiveCell.FormulaR1C1 = "=[MyValue1]/[MyValue2]"

However, it crashes out on putting the formula in. How do I correctly
call the results of MyValue1 & 2 and put them into a formula?

Any help greatly appreciated!
Thanks,
Paul


---
Message posted from http://www.ExcelForum.com/




All times are GMT +1. The time now is 03:37 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com