| Thread | Last Post | Replies |
|
| Replace first 8 letters of filename with Macro | 21 Feb 2006 15:51 GMT | 5 |
I have a bunch of files that all begin with a date - 20051231. After the date is the rest of the filename and this part of the filename varies. What I want to do is REPLACE the 20051231 portion of every file in a specific folder with FINAL 2005. To be more specific....I
|
| reference problem | 21 Feb 2006 15:51 GMT | 4 |
I have had some else working on a check register spreadsheet and it is almost finished but there is still a problem with where the data is posted to. Can
|
| Filtering in VBA | 21 Feb 2006 15:48 GMT | 1 |
I need help with the Autofilter I have data in worksheet "SheetA" Cells A6 to D6 that has a list of names In worksheet "SheetB" I have data from A2 to BB2 and in column AD have a list of names that should contain multiple instances of the names in
|
| GetObject method not work after Call Shell Method | 21 Feb 2006 15:45 GMT | 8 |
Trying to grab a reference to Outlook. I first use the Getobject(,"Outlook.Application") method, this works if outlook is open but if's it's not, I use Call Shell("dir string") to open Outlook then use GetObject again to attempt to grab reference. This does not
|
| macro to list file name and path in separate cells | 21 Feb 2006 15:16 GMT | 4 |
Can anyone help me with a macro that will go to a particular folder in Windows explorer and list all the files in one column of an excel spreadsheet and the path to the file from that folder in another column. I need this to work on sub-directories so effectively creating
|
| Showing all in Filter | 21 Feb 2006 14:36 GMT | 3 |
Apologies in advance because I know this is probably quite basic stuff here... I want to get a macro that releases all filters in all worksheets, but I don't know how to get around the fact that a filter might not be
|
| How to disengage the F9 key - Workbook_Open? | 21 Feb 2006 14:10 GMT | 4 |
This preps the file as desired: Private Sub Workbook_Open() Application.Calculation = xlCalculationManual End Sub
|
| What am I missing? | 21 Feb 2006 14:10 GMT | 2 |
What am I missing? This code is in the "ThisWorkbook" Module; however it does not execute ShiftLeft and ShiftRight when the designated keys are pressed. Private Sub App_WorkbookOpen(ByVal Wb As Workbook)
|
| Visual Basic and Excel | 21 Feb 2006 14:01 GMT | 5 |
PROJECT 1:EXCEL and VBA From the developer:
> > Here is what is in the file: |
| Correct Syntax | 21 Feb 2006 13:57 GMT | 2 |
What is the correct syntax for; Application.OnKey "Alt{F8}", ""? I need to know the syntax for adding the alt to the f8. If I use (Application.OnKey "{F8}", "") it works, but I don't know how to get (Alt +
|
| Private Sub on the fly | 21 Feb 2006 13:57 GMT | 2 |
Is it possible to create this using code - not just writing the code below Private Sub TextBox1_Change() Cells(6, 18).Value = Application.Sheets("Sheet1").TextBox1.Text End Sub
|
| Trim not working.... | 21 Feb 2006 13:30 GMT | 2 |
I use len(trim( range("blah:blah") ) ) > 0 to test wether a cell (o range) has contents. Code -------------------
|
| Using Match/Index on 2d Array | 21 Feb 2006 13:26 GMT | 3 |
I have an array of data (HourData) with 20 rows and 6 columns as seen below. I want to find the row where the value in the 6th column is equal to or greater than a value (X = 2700). This should return the row 12: 8 D E 491 21 2918
|
| How do I make a Pivot Case sensitive? | 21 Feb 2006 13:16 GMT | 2 |
I have data being returned from a SQL view via ODBC (IDS on SuSE) where a specific field has a value of N and n. The problem is; only N is showing and all n's are summed in... How can this be solved?
|
| Selecting Range | 21 Feb 2006 13:11 GMT | 5 |
How do you select an Activecell.Offset range? As I am trying to copy the cells to the left of the ActiveCell.Select. Code: --------------------
|