Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Volatility With Comboboxes?

You can break the rowsource / controlsource links and populate your combobox
using code

Private Sub Userform_Initialize()
With Worksheets("Data")
set rng = .Range(.cells(1,1),.Cells(1,1).End(xldown))
End With
me.Combobox1.List = rng.Value
End Sub

Private Sub Combobox1_Click()
worksheets("Data").Range("B9").Value = _
me.Combobox1.Value
End Sub

--
Regards,
Tom Ogilvy

"MDW" wrote in message
...
Hey all,

I've got a minor issue with a workbook. I've got a userform with a

combobox
that gets its content from a range on the worksheet. It's a static range;

no
one else uses the workbook but me and I don't need to change the content.

Every time I try to close this sheet, I get a pop-up that says "Would you
like the save the changes you made in ...?" I can only assume that the
"changes" are due to the fact that the combo box is being dynamically
populated every time I open the form.

Is there anything I can do to stop this from happning? Ideally, if there's

a
way to simply hard-code the options into the combo box like you can do in
Access, I'll take it.
--
Hmm...they have the Internet on COMPUTERS now!



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
How to plot volatility in Excel mtt14 Charts and Charting in Excel 3 June 25th 06 06:19 PM
RAND() Volatility [email protected] Excel Discussion (Misc queries) 3 March 20th 06 04:44 PM
Removing Volatility Monte75 Excel Worksheet Functions 6 October 4th 05 10:02 PM
volatility calculation volatility calculation Excel Worksheet Functions 2 May 24th 05 02:11 PM
volatility excelFan Excel Discussion (Misc queries) 1 March 27th 05 09:41 PM


All times are GMT +1. The time now is 12:36 AM.

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"