| Thread | Last Post | Replies |
|
| Programming a macro to draw info from a list of links | 25 Jan 2008 00:17 GMT | 4 |
Sorry, I'm really, really ignorant when it comes to programming macros. I currently have an Excel file with two worksheets. Worksheet 2 is named "Links" and consists of a list of links (not in hypertext format... not sure of this could be the problem or not). Sheet 1 is named ...
|
| Create header/footer txt file and link to Excel worksheets | 25 Jan 2008 00:17 GMT | 1 |
I work for a company that typically has very large and long engagements. Many reports/schedules/analysis spreadsheets are created throughout obviously. Each case usually has its own custom headers/ footers specific to that case. Although they can change numerous
|
| Delete Sheet without Warning | 24 Jan 2008 23:57 GMT | 5 |
how do I supress the warning when deleting a sheet with a macro? I am using the command following command to delete the sheet. Sheets("Sheet1").Delete
|
| How to add the same cell in multiple worksheets (with VBA)? | 24 Jan 2008 23:57 GMT | 4 |
I need to add the same cells in multiple worksheets. I want the worksheets to be selected dynamically using a range on another worksheet which contains the names of the worksheets to sum. I don't want any formulas in the summary worksheet - I want to populate the cells with ...
|
| IsEmpty - what's the opposite? | 24 Jan 2008 23:18 GMT | 5 |
This works great - If cll.Value = "R" And IsEmpty(cll.Offset(0, 2)) Then .... I need the same statement, but "not empty" - been searching, but can't find it!
|
| force a selection from a list of words | 24 Jan 2008 22:54 GMT | 4 |
I have a list of prefered words for specific type work sheets, is there a way to force a user to select from that list and only that list? In my workbooks, each sheet will have a column (F) that will use up to 29 rows maximum. When ever a user selects a cell in that column I want ...
|
| Lookup in VBA | 24 Jan 2008 22:08 GMT | 1 |
I was about to embark on moving some VLOOKUP type code into a VBA module using the "WorksheetFunction" approach. First however, I thought I'd check whether there was an easier, more direct approach. Following my nose, I find the VBA development help system provides a list of
|
| formula | 24 Jan 2008 21:57 GMT | 4 |
SUM of multiple cells (Ex. =SUM(T1:T6)+(T15)+(T24:T26) It will not allow and giving error of #VALUE Please help!
|
| SaveAs produces subscript error | 24 Jan 2008 21:54 GMT | 3 |
I am trying to saving a file based on the text name in a designated cell in the workbook. However, with this code, I get an “subscript out of range” error. Do you know what I am doing wrong? Thanks for your help.
|
| Variable causing subscript out of range error | 24 Jan 2008 21:47 GMT | 1 |
I am trying to saving a file based on the text name in a designated cell in the workbook. However, with this code, I get an “subscript out of range” error. I am running out of ideas. There must be a way to do this! Seems to be problem with variable.
|
| Sheet Tab Color, Excel 2000 & 2003 | 24 Jan 2008 21:20 GMT | 10 |
I have a worksheet with 30 worksheets. I would like to color each tab a different color for reference purposes. I can't figure out how to wright a macro to select a sheet and then select a tab color. This is my macro to select each worksheet. How can it be modified to
|
| Macro copy of variable ranges in one sheet to table in another she | 24 Jan 2008 21:01 GMT | 1 |
I am trying to make a "simple to use" way of generating buy-requisitions and reccording the individual purchases in a table. Each requisition will have 1 to 20 lines (rows) and each line will consist of 12 cells. 2 of the cells are keyed in manually the rest are generated (
|
| userform | 24 Jan 2008 20:55 GMT | 1 |
Is there a way to import a string into a label on a userform? Thanks
|
| Selection.Copy used in a variable. | 24 Jan 2008 20:31 GMT | 5 |
How do I pass the variable "vData"? '====== lRow = Range("A1").End(xlDown).Address 'MsgBox lRow 'for testing
|
| Auto Start Macro in Excel | 24 Jan 2008 20:26 GMT | 2 |
I would like to know how to create a Macro in Excel (Maybe something better), that would automatically go to "Sheet1" Cell A5 at the launch of Excel. Currently I have Sub Auto_Activate()
|