| Thread | Last Post | Replies |
|
| Button Problem | 17 Nov 2007 06:16 GMT | 1 |
I have added 6 buttons to my spreadsheet. The last 5 are copies of the the first one, so all of the properties are the same. There are control toolbox buttons. One of the buttons kicks off a macro to subtotal the sheet. I would like to
|
| Excel 2000 issue with ComboBox list entries disappearing | 17 Nov 2007 06:08 GMT | 1 |
version is Excel 2000 SP3 -I have a ComboBox on Sheet two of the Workbook. -The ComboBox has a ListFillRange of "S2:S9" where i have some text -Depending on the ListIndex value of the ComboBox, the macro copies some
|
| How to do it on excel? | 17 Nov 2007 04:51 GMT | 1 |
Private Sub Worksheet_Change(ByVal Target As Range) Set r = Range("A1:C1") If Intersect(r, Target) Is Nothing Then Exit Sub Application.EnableEvents = False
|
| Need Help - Small Macro | 17 Nov 2007 03:46 GMT | 3 |
Unfortunatly, I am not very well versed in VBA. Here is what I need to be used within Excel 2007. ** 1 spreadheet has 30 worksheets. 1. I need a macro that will automatically go to the first worksheet,
|
| Printing contents of an array into a message box | 17 Nov 2007 03:29 GMT | 1 |
Currently, I am working through some basic examples given on this website: http://www.anthony-vba.kefra.com/index_011.htm. When I tried the first example in Excel VBA Basic Tutorial 3, ie: Option Base 1
|
| User Defined Functions - Input prompts | 17 Nov 2007 02:12 GMT | 2 |
We have created a user defined function in VBA which has a number of variables When we use this function in an Excel sheet we want the yellow prompt box that you get when you use normal excel functions to appear. This will then help us to input the formula without having to use ...
|
| what happens when this code is run? | 17 Nov 2007 01:26 GMT | 5 |
Suppose that an Excel spreadsheet contains the value "Hello" in cell A10 but is otherwise empty when the following code fragment is executed: [code]Dim intCounter As Integer intCounter = 1
|
| Printing multiple embedded Word Documents | 17 Nov 2007 00:58 GMT | 7 |
I'm a novice VBA coder, but am trying to make this work. I have an Excel workbook that contains 4 worksheets. The first worksheet is a summary, and this is where I'd like to add a button to "Print All". The remaining 3 worksheets each contain data as well as an embedded
|
| On excel, can customer ID generate name address field? | 17 Nov 2007 00:44 GMT | 2 |
I downloaded an xls template that I am currently using to generate my invoices. There is one cel where I type the customer ID. And another combination of cels where I type the customer name and address. Is there anyway to streamline this operation?
|
| Text to Column with fixed width in VBA | 17 Nov 2007 00:40 GMT | 1 |
I have text file with about 300 lines items that are not delimited but the width of each columns is fixed and do have the value. For example,
|
| Can I Write A Macro That Will Execute Fomula In The First Empty Ce | 16 Nov 2007 23:39 GMT | 15 |
I have a spreadsheet looks like this: QID C1 C2 C3 C4 %a %b %c %d 13123 b b b b 0 100% 0% 0% 13124 d d d d 0% 0% 0% 100%
|
| Searching external file for values | 16 Nov 2007 23:25 GMT | 1 |
I have a datapull from a propriatary db that we use and I have the ability to clean up the data, no problem. i have another workbook which is a report in a fixed format with multiple sections seperated by rows. such that rows 30 - 81 are part of a section with
|
| command button caption | 16 Nov 2007 23:14 GMT | 2 |
I have a command button on a worksheet with a CLICK event handler. Is it possible to toggle the caption on the button between say, Set , Reset with each click?
|
| "Add/Remove Rows Code" adds rows on grouped sheets, but won't remove rows. | 16 Nov 2007 22:41 GMT | 1 |
I have code that I use to add or remove rows (at the location of the active cell) on a work sheet. I've been trying to modify it so it will work with a set of Grouped worksheets. It works fine when I am adding rows, but when I need to remove rows, it only removes rows from the ...
|
| Changing AutoSave location programmatically | 16 Nov 2007 22:38 GMT | 2 |
We had a server crash. We replaced it with a new box. The old Autosave location was: \\<server name>\path. Excel now can not find that location. When I go to Tool -> Options, and
|