| Thread | Last Post | Replies |
|
| FormulaR1C1 error on a SUMIF | 22 Jun 2006 19:38 GMT | 1 |
I am getting an error on the last line of the following: Selection.AutoFilter Field:=19, Criteria1:="<>" Selection.AutoFilter Field:=1, Criteria1:="1000" Selection.AutoFilter Field:=4, Criteria1:="<>1000", Operator:=xlAnd
|
| Select a Row where the cursor is active | 22 Jun 2006 18:53 GMT | 4 |
How can I in VBA select a entire rows("number:number") where the cursor is active...so when the cursor moves through my for next statement it keeps on selecting the proper rows that I need it too and skipping the others?
|
| If - Then synthax | 22 Jun 2006 18:51 GMT | 3 |
Dim cell As Range For *Each cell In Range("B:B")*(...) Next I need to modify this call so the cycle goes from B10 to the last ro
|
| Finding Unique Entries Among Two Columns | 22 Jun 2006 18:50 GMT | 7 |
Columns A & B contain several thousand Project Numbers (e.g., P1052, PA844, P6721.6, etc.). Column A has the latest list of Project Numbers. Column B has an older list of Project Numbers. As such, column B is a subset of column A. I need to find all of the “new” (i.e., ...
|
| Delete sheets on exit | 22 Jun 2006 18:48 GMT | 2 |
I have a macro that will create data sheets based upon the mai worksheets information. What I was wondering is, upon exiting the file, can I have excel delet those created sheets so that when the file is opened again the macro ca
|
| Defining Constants from info in workbook | 22 Jun 2006 18:42 GMT | 1 |
If I want to save the value of a "constant", I'd do something like this: CELLS (i,"A").Value = "=MATCH(""WTD HRS"",""'[""&RC6&""]""&sname""'""'!R7)" How do I write the results of this as a constant that is not saved in the workbook.
|
| Quick question..:P (Row range) | 22 Jun 2006 18:37 GMT | 1 |
Dim cell As Range For Each cell In Range("B:B") If Len(cell.Value) = 0 Then cell.Offset(0, 1).Interior.Pattern xlPatternGray8
|
| Having problems writing macro in Excel | 22 Jun 2006 18:32 GMT | 1 |
i am trying to write a goalseek macro with a minimum GoalSeek Goal to generate premium rates for different ages. i have a group of people from age = 17 to 60
|
| Combo Box ListRows property; changing programmatically | 22 Jun 2006 18:31 GMT | 2 |
Does anyone know how to programmatically change the ListRows property of a Combo Box? Using VBA I would like to run a Distinct query against a DB (which I can do). That query will return values to a Dynamic Named Range, whose Row Count
|
| REPOST: Calling Excel Automation Add-In in VBA | 22 Jun 2006 18:13 GMT | 13 |
We have an Automation Add-In that we developed in C# (2.0) which we are calling from the worksheet in Excel (2003). We want to be able to call functions in that AddIn from VBA code in teh workbook as well. If it was a COM Add-IN, we could call
|
| Last needed info (validation) | 22 Jun 2006 18:11 GMT | 1 |
Here is the code with the missing link! What I want to do is activate a validation list (Named "Comply") in every cell to the right of a cell containing "I" in the B column... Anyone knows what goes in the (...)?
|
| EN EXCEL NO PUEDO COPIAR HACIA ABAJO UNA CELDA CON BUSCARV | 22 Jun 2006 18:03 GMT | 1 |
ESTIMADOS SEÑORES QUE HAN DISEÑADO EL PROGRAMA DE EXCEL. NO SE SI SEA YO EL QUE DESCONOCE EL FUNCIONAMIENTO DE EXCEL, PERO NO PUEDO COPIAR UNA CELDA QUE CONTIENE LA FUNCION DE "BUSCARV" Y PEGARLA HACIA ABAJO EN TODAS LAS CELDAS. ME DA UN MENSAJE DE ERROR...DESEO SABER CÓMO LE ...
|
| How do you refer to empty cells in coding? | 22 Jun 2006 17:56 GMT | 9 |
If I want the cells with I: If cell = "I" Then cell.Offset(0, 2).Interior.Pattern = xlPatternGray8 So How do I refer to Empty cells? If cell = *EMPTY* Then cell.Offset(0, 2).Interior.Pattern =
|
| Separating | 22 Jun 2006 17:47 GMT | 2 |
i HAVE in cellS: A1: J234 TELEPHONE A2: J23456 WASHER i WANT THESE TO BECOME:
|
| Pasting Between Workbooks | 22 Jun 2006 16:53 GMT | 1 |
Okay, my macro requires opening two extra workbooks for sorting/copy/pasting purposes, and I am working on a way to close the extras. This formula Closes Workbook 1 which leaves Workbook 2 active, I do a Cells.Select, copy and activate next which brings up the original workbook, ...
|