ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Userform button setting variable from formula (https://www.excelbanter.com/excel-programming/349407-userform-button-setting-variable-formula.html)

teepee[_4_]

Userform button setting variable from formula
 
I have a userform that contains windows media player. I want to set
CommandButton4 to take the value of the formula in cell A2 of the active
sheet and set it as the value of variable named 'inset'. I'm finding the VBA
code on this much harder to write than I thought it would be. Any ideas
please, anyone?



teepee[_4_]

Userform button setting variable from formula
 

"ShaunM" wrote

I am a bit confused by your request but I think that it as simple as:

Private Sub CommandButton4_Click()
inset = Range("A2").Value
MsgBox ("The value of cell A2 is: " & inset)
End Sub


Thanks Shaun, that's kind of you to respond. I think the problem with your
suggestion might be that the variable is only then available within the
userform itself whereas I need to refer to the variable within other macros.
Do I not need another approach if the variable is to be generally available
elsewhere in the spreadsheet?



teepee[_4_]

Userform button setting variable from formula
 

"BizMark" wrote

All you need to do is use the example above, except you need to add a
Module to the project and declare the variable as public, like so:

Public inset As Integer


Worked a treat. Many thanks to you both

tp




All times are GMT +1. The time now is 05:08 PM.

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