| Thread | Last Post | Replies |
|
| Find cell below last number in a column | 20 May 2006 00:45 GMT | 5 |
I need an efficient way to find the cell below the last number in a column in a macro. Thanks
|
| merging excel books | 20 May 2006 00:40 GMT | 3 |
Does anyone know of a way to merge multiple excel books that will be a single sheet per book into one file - i can name them in any format and they will all be in the same directory. Thanks, Ben
|
| SendMail to multiple recipients, one variable, and one constant | 20 May 2006 00:34 GMT | 2 |
I'm trying to use the SendMail command to send a workbook to two people, one manager, and one employee, the employee is variable, but the manager is constant, here's what i have right now ActiveWorkbook.SendMail Recipients:=Array(myRecipient ,
|
| Open another excel file in macro | 20 May 2006 00:00 GMT | 2 |
I'm trying to open another excel file to no avail. Here's what I have: Code: -------------------- Dim Location As String
|
| Return a Value Based on 3 Critera | 19 May 2006 23:59 GMT | 2 |
I need help devising formulae/VB to do the following: I have a database list that I copy into Excel as a worksheet. In excel, I have many different worksheets that do calculations based on this list. Example database list:
|
| SpellNumber Function | 19 May 2006 23:57 GMT | 3 |
http://support.microsoft.com/?kbid=213360 This is the basic spellnumb er macro form microsoft it spells number in english
|
| date time Formating | 19 May 2006 23:23 GMT | 1 |
How do I customize the cells so that if a person puts the mm/dd/yy hh into an inputbox within my vba code it shows up in the cell as mm/dd/yy hh:00? The people using this code are lazy and don't want to type :00 after each hour.
|
| Is Empty | 19 May 2006 22:29 GMT | 2 |
Trying to write code that moves some data up a row but having troubles due to ignorance. The error message on compile is: "Expected Array" for the IsEmpty statement. Can someone help bridge this problem? Here's the code:
|
| looping | 19 May 2006 22:27 GMT | 2 |
How do I loop this code until the cell that the data is comming from is empty? Sub clovis_time() activecell.Offset(0, 0).Range("A1").Select activecell.FormulaR1C1 = "=(RC[-1]-INT(RC[-1]))*24"
|
| Searching 2 columns for dates and text problem | 19 May 2006 22:27 GMT | 2 |
I have two worksheets in a single workbook. WS1 Col A contains dates; Apr-06 thru Mar-07 over a 1,000 rows Col B is populated with 15 unique category descriptions over the 1,000 rows.
|
| Auto-detect range size | 19 May 2006 22:21 GMT | 4 |
I'm fairly new to VBA. I'm taking db output and wanting to work with it. However, the number of rows varies greatly. The only way I can address one of the columns as a range is to use an input box to ask the user to select the cells. Put another way, I'd like to use the logic
|
| Subtotal \ Grand Total in VBA | 19 May 2006 22:03 GMT | 2 |
I need to subtotal a range at each change in "CTR" with VBA code. I acheived this with a macro recording but I can't figure out the next part which is this. I need to get the Grand total that appears at the bottom of the sum
|
| Error Trapping question.... | 19 May 2006 21:43 GMT | 4 |
TIA I have a macro that searches a "data dump" from my general ledger and basically organizes it for review. I am trying to trap an error when my macro encounters a range that does not exist. This is my code:
|
| Dynamic Toolbar icon | 19 May 2006 21:32 GMT | 3 |
I cannot find a way to paste an image into a now toolbar icon using VB macros. I create a toolbar button when I open a particular spreadsheet, and I destroy it when I close the worksheet. In this way, my toolbar is customized
|
| Pasting Between Excel and Word | 19 May 2006 21:24 GMT | 1 |
I am having a hard time getting formatted text back and forth between excel and word. I can take the contents of an excel cell and (through the clipboard) get it into word in the RichText Format (bold, font size..). What I want to do is to be able to edit the text using word ...
|