| Thread | Last Post | Replies |
|
| Triggering Macros | 27 Jan 2006 15:21 GMT | 2 |
I am very new to macros, but I have written several and mapped them to buttons. I have seen some sample code that is triggered when the user saves, or doubleclicking etc. Does anybody have a good reference on how to do this, and what can be triggered?
|
| Changing the Date format | 27 Jan 2006 15:19 GMT | 2 |
I want to write a macro by which I can change the date format fo dd/mm/yyyy to mm/dd/yyyy. How to do this --
|
| How to configure Excel startup | 27 Jan 2006 15:19 GMT | 1 |
I have MS Excel installed on a system at work. There is one file which is a shared workbook. Whenever I try to open Excel directly - either using the shortcut or from the Start menu, this shared workbook and all other recent files cascade and open up. Is there any way to default ...
|
| Reading H Page Breaks | 27 Jan 2006 15:13 GMT | 3 |
It seems pretty easy to add a page break, but I'm trying to find the rows where a horizontal page break exists. I've been trying use something ilke the following to loop through them and see their location For x = 1 To Worksheets(1).HPageBreaks.Count
|
| Printing a hidden sheet | 27 Jan 2006 14:51 GMT | 5 |
The below macro works just fine when the worksheet is not hidden. But when it is the macro bombs out. Sub Button11_Click() Sheets("Print Ticket").Select
|
| updating historical prices log (macro?) | 27 Jan 2006 14:48 GMT | 1 |
Hi there and thanks in advance for any help you can give me . . . I am currently daily manually logging daily historical prices into an excel worksheet. I would like to make a macro that daily takes the values (only) from a
|
| Repeat Macros Function/Program | 27 Jan 2006 14:19 GMT | 4 |
I have a automated process set up in an excel template. The porcess takes info from one sheet and puts associated information into another, based on a cell reference. I need the process to repeat over and over, until all the cells have been referenced. Can someone tell me how ...
|
| Opening Acrobat Reader using VBA | 27 Jan 2006 14:07 GMT | 2 |
I have added the: "Adobe Acrobat 7.0 Type Library" under tools and references. This is the only Adobe Product I have in my PC.
|
| Disabling cell resizing, Unmerging cells | 27 Jan 2006 14:05 GMT | 1 |
Is there anyway I can disable cell resizing or unmerging of cells, while leaving the cell/merged cells unprotected. The reason I need the cells/merged cells to be unprotected is because I'm making a form where the user will need to type text on specific cells. I want them to be ...
|
| Find the column you are in | 27 Jan 2006 14:04 GMT | 2 |
Probably a simple answer to this, but I am doing a find using the Range.Find function. It is looking in all cells. Goal is to get column A's value for the row that my string was found. How can I do this?
|
| Save to hard drive and backup to thumb drive. | 27 Jan 2006 13:17 GMT | 22 |
What I want to be able to do with a macro is the following. Once you click the “Save” button: Save the file to the c: drive (I have no problem this is part) Save the file to the thumb drive.
|
| getting activated userform name | 27 Jan 2006 12:56 GMT | 1 |
currently, name of loaded userform ?? my mean, not caption but name ...
|
| ListBox (?) in a macro | 27 Jan 2006 12:46 GMT | 1 |
I need, in a macro, an instruction that will display a long list fro which the user can select an item and paste it into the current Activ Cell. For approaching the item wanted I envisage one of those boxes with
|
| macro that runs when the value in A1 has a certain property | 27 Jan 2006 12:02 GMT | 1 |
Basic Question: How can I create a macro that tests whether the value in column C is “X” and if it is, run a separate macro. Detailed Question: At the moment, I have a macro that names the workbook after a date value in Sheet1!A1. I want my macro to take that value and
|
| find row | 27 Jan 2006 11:46 GMT | 2 |
Im using: Range(Cells(Range("b:b").find("e0").Row, 1), _ Cells(Range("b:b").find("e1").Row - 1, 1)).Columns("A:z").Select to select all the rows containing 'EO' then sorting the data with
|