| Thread | Last Post | Replies |
|
| Select specific cells in same row as active cell | 25 Jan 2007 19:26 GMT | 1 |
I need the code for selecting a specific range of cells on the same row as the active cell. The active cell will be selected with a cell.find operation, so it will not always be in the same column. Thus, an activecell.offset won't work.
|
| Status Bar Question | 25 Jan 2007 19:18 GMT | 2 |
Is there anything I can add to this to diplay a progress bar also? Application.StatusBar = "Processing " & sh.Name Thanks, -- Dan
|
| How to jump from a Form procedure to a Workbook or Module procedure? | 25 Jan 2007 19:15 GMT | 4 |
I have a procedure in a user form and I need to have it execute a procedure in a worksheet module (same workbook). Basically I need to "Call mySubroutine()" from a form to an outside subroutine. How do you do that? Even a "GoTo xxx" would be fine.
|
| Textbox format | 25 Jan 2007 18:30 GMT | 2 |
I have the following code to pick up infomation from the spreadsheet and show it in my userform. Dim text1 As Long text1 = UserForm6.TextBox1.Value
|
| Calculating Fiscal Period based on Date | 25 Jan 2007 18:14 GMT | 2 |
I have an project i'm working on to determine fiscal periods based on date of invoice. I have one workbook ("FiscalPeriods.xls") that has the date ranges for each fiscal period for the past three years. ie; Period PeriodStartDate PeriodEndDate
|
| Conditional Format, copy down | 25 Jan 2007 18:01 GMT | 3 |
Hi All......... I have code which puts a 3-level Conditional Format in a cell, U9. I would like to copy just that CF down the column U as far as there is data in column C. I've tried, but just don't seem to be able to get it right, and recording
|
| Formula using INDIRECT function? | 25 Jan 2007 17:31 GMT | 2 |
Can someone help me translate the following formula? =VALUE(IF(ISERROR(INDIRECT(U61&$V$61&MATCH($B$60,INDIRECT(U61&"A:A"),0))),0,INDIRECT(U61&$V$61&MATCH($B$60,INDIRECT(U61&"A:A"),0)))) U61 = Belgium! V61 = h
|
| Show only matches between a named cell range and the values in a page field - vba | 25 Jan 2007 17:00 GMT | 1 |
I'm trying to create a macro in vba that will compare a list of items in a named cell range to the values in a page field of a pivot table. The named cell range is a subset of the complete list of values in the page field of the pivot table. I want to hit a button and the pivot
|
| Turn filters off and back on | 25 Jan 2007 16:57 GMT | 2 |
I'm trying to write a large array to a range on a sheet next to another range that may have filtered rows. I'm doing this: rng.Cells.set_Value(Type.Missing, (object)arrValues);
|
| Cell Formatting Issue | 25 Jan 2007 16:51 GMT | 13 |
On my worksheet (Excel 2003), I am using the following code to format: Range("D6:D555").Select Selection.NumberFormat = "0.0000" The problem is every 40 or so cells I have merged 5 rows from A to S. These
|
| Can anyone point me in the right direction please? | 25 Jan 2007 16:05 GMT | 4 |
my code writes a changing calculation value to another part of my spreadsheet. I am trying to amend my code to paste to another worksheet in the workbook and also write to a different line each time the value changes
|
| Batch File drag-n-drop processing. | 25 Jan 2007 16:00 GMT | 3 |
Let's say I have a spreadsheet(questions.xls) that represents a customer questionaire, formated in a fancy page layout. I will email that questionaire to 1000 people. They will fill it out and email it back to me.
|
| Pivot Table - Selecting the GrandTotal Column in VBA xl2003 | 25 Jan 2007 15:42 GMT | 3 |
can anyone help with the vba code for selecting either the GrandTotal Column or Row in a pivot table. I seem to be able to select just about anything else but these.
|
| Procedure too large error | 25 Jan 2007 15:11 GMT | 6 |
I wrote some code that has become to large. I get a compile error: procedure to large when I try to run it(from a button click). I need help re-writing it so its smaller. Here is the code, this example is for just one employee, i have to do this for 9 employees in total, that's ...
|
| Subtotal in samll file take a lot of time (VBA) | 25 Jan 2007 15:09 GMT | 1 |
I have big xls file. I run macro on this file and in the macro I add new workbook by: Set NewBook = Workbooks.Add In the new workbook I add data (between 5 to 100 rows) and the create
|