| Thread | Last Post | Replies |
|
| Counter to delete a row | 26 May 2006 04:42 GMT | 3 |
I have a macro which deletes row 6 from my worksheet. eg "Rows("6:6").Select" However I want to amend this code so that instead of deleting row 6 I want to delete the row number equal to a counter value that I have defined.
|
| Automatically Delete Text at the end of an imported report into Ex | 26 May 2006 04:26 GMT | 1 |
I have a report that I import into Excel each day. At the bottom of the report is text I want to delete before running a macro. The number of rows in the report varies each day. I'd like to add code in my macro that automatically deletes that specific text at the end of the ...
|
| floating | 26 May 2006 04:24 GMT | 1 |
I want to know if it's possible to do a floating menu?
|
| multi-function macro possibilities? | 26 May 2006 03:50 GMT | 7 |
I'm new to this forum, but somewhat familiar with VBA in MSAccess97. What I am hoping to accomplish is to create a macro, to be run with a button click that will perform the following functions: 1) Delete some unecessary columns from one spreadsheet that will always
|
| code help w/userform | 26 May 2006 03:47 GMT | 2 |
I have had a lot of help on this project and i need just a bit more PLEASE! I have a userform that has a listbox with multiple columns in it. I have it set so the user can choose as many rows as they like. The data that fills the listbox comes from a named range ("Database") from ...
|
| MORE listbox code | 26 May 2006 03:46 GMT | 5 |
In a listbox that allows multi selections and has multi columns when the user makes his selections how do you place text such as "PAID" in column F for the corresponding rows selected on the database worksheet. Note: this worksheet is the same info filling the list box. Thank you ...
|
| to find the conditiona format of a cell in vba | 26 May 2006 03:35 GMT | 2 |
I have conditional format in C2 the condition is c2 is grater than B2 I can find this out by selecting C2 and see
|
| how to stop a hidden session from Excel | 26 May 2006 03:04 GMT | 5 |
I asked this in the Access forum but no solution. I am opening Excel from Access. Problem is many times a hidden session remains in the windows task manager - processes. I checked my code (all explicit declaration), send it to the Access forum,
|
| How to Print a File or Control | 26 May 2006 03:04 GMT | 6 |
Excel 2003. FIRST, I want to just be able to print (to my default printer) the contents of a text control on a user form. I was given the following code, but the printout is funky (margins are super narrow). Dim PrinterName As String, I As Integer
|
| Determining if column(s) need to be Autofitted | 26 May 2006 02:56 GMT | 1 |
Excel 2003. I programmatically build a year to date master workbook from the monthly workbooks we create. The master and the monthlys all have the same number of sheets. I simply copy sheet 1 of January, sheet 1 of February, and so on into sheet 1 of the master, with each ...
|
| Leftover formatting in code | 26 May 2006 02:55 GMT | 3 |
I have this code: Private Sub Commandbutton1_Click() With ActiveSheet Select Case UCase(.Range("c1").Value)
|
| Using the result of a cell's formula as an argument within a running macro? / More | 26 May 2006 02:38 GMT | 2 |
Hi to AP and All, The procedure below adds a thick border to the bottom of my varaible array. I want to replace the fixed range "Range("C13:M14").Select" with the
|
| Removing a macro | 26 May 2006 02:37 GMT | 3 |
Ok, so I inserted a macro that specifically formatted my printout of a range of cells. I decided to change that formatting and deleted some lines of code. HOWEVER, when I run the macro, it prints out the range of cells the original way the code was written.
|
| Delete Rows | 26 May 2006 02:35 GMT | 4 |
I think my question is too simple, because I've been searching through these threads and can't seem to find the answer. All I want to do is write into my macro the code to delete rows 1 and 2. That's it. Can someone tell me what code to use? I'm afraid I'm a little too new at
|
| Using variable for range address | 26 May 2006 01:08 GMT | 4 |
If Range("h9").Value = "N" Then Selection.AutoFilter Field:=1, Criteria1:="+" End If I want to be able to replace "h9" with a variable that i can change
|