Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.programming
external usenet poster
 
Posts: 27
Default 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?


  #2   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.programming
external usenet poster
 
Posts: 27
Default 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?


  #3   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.misc,microsoft.public.excel.programming
external usenet poster
 
Posts: 27
Default 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


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Userform button setting variable from formula teepee Excel Discussion (Misc queries) 4 January 4th 06 06:59 PM
Userform button setting variable from formula teepee Excel Discussion (Misc queries) 0 January 3rd 06 08:26 PM
Directly setting variable to formula [email protected] Excel Programming 1 November 18th 04 12:16 AM
setting a range variable equal to the value of a string variable Pilgrim Excel Programming 2 July 1st 04 11:32 PM


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

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"