| Thread | Last Post | Replies |
|
| VBA to count rows from specific cell and insert rows | 26 Nov 2007 22:14 GMT | 3 |
Within a macro I have a "found" cell (Find "US03" in certain column) which can be on any row. I need code to count down 170 rows from this cell and insert 2 rows. This is done from the top of the worksheet. Thanks!!
|
| Save as problem for Excel 97/2000 (with VBA-protection in excel 20 | 26 Nov 2007 22:03 GMT | 3 |
When I've protected VBA with a password, and I want to save my workbook as an Excel 97/2000 workbook, I get an error message that's saying that I must "unprotect" the VBA-code before saving the workbook. I've written the code with excel 2003.
|
| Using "Paste" Method in VBA | 26 Nov 2007 22:00 GMT | 5 |
I have a VBA program that uses both "PasteSpecial" and "Paste" Methods. I have no problem using the "PasteSpecial" Method as follows: Sheets("Val").Range("BE19:BE66").Copy Set MyRangePaste = Sheets("Save_Scen").Range("H124")
|
| copying | 26 Nov 2007 20:53 GMT | 2 |
Hi Id like to copy some data from one open workbook to another open workbook using vba. Date in first workbook is in sheet1 a1:m1000. Id like to copy this to sheet1 in the second workbook. Any ideas please Regards Robert
|
| MyArray (ComboBox.ListCount-1) possible? | 26 Nov 2007 20:28 GMT | 2 |
"How do I set the total number of elements of an array to match the total number of items in a ComboBox thanks in advance"
|
| find multiple values code tweak | 26 Nov 2007 20:26 GMT | 5 |
How do I tweak the following code to cut and paste all rows with "deal" or "no deal" in column A rather than "S". Here is my code. Thanks Sub MoveStuff()
|
| Enumerating the names of *subs* and *functions* | 26 Nov 2007 20:18 GMT | 6 |
I've searched through the Excel "Help" structure, the MS KB and Excel pages as well as google-ing for all the combinations I could think of to find a method to produce a list of all of the user *sub*s and *function*s which are contained in an Excel
|
| How to add total from alternate cells? | 26 Nov 2007 20:13 GMT | 2 |
I have a rollup worksheet and using a macro it gathers all the VOL and MIN columns from the other worksheets onto the rollup worksheet. But I would like to add a GRAND TOTAL VOL and GRAND TOTAL MIN on the rollup worksheet.
|
| Mail Merge Question | 26 Nov 2007 19:56 GMT | 1 |
I am using a mail merge and the letters contain fields for gift amounts. I am looking for a way to have dollar signs appear in the fields which have a value greater than zero, but not appear otherwise. The data I am pulling has no dollar signs. So, for
|
| Count backwards with a for next loop | 26 Nov 2007 19:56 GMT | 3 |
Don’t you count backwards with a for next loop using the following For i = 1 To 4 Sheet1.Cells(i, 1) = i Next i
|
| Positioning a comment | 26 Nov 2007 19:54 GMT | 1 |
I am using Excel2003 and Vista Premium; I am trying to position a comment on the left side of a cell, I edit the comment and then move it to the left side of the cell. When I re-hover over the cell it is back on the right side
|
| comparing contents of worksheets | 26 Nov 2007 19:53 GMT | 6 |
I need to write a macro that will allow me to compare to worksheets to identify what has been added, deleted, or otherwise edited from one to the other. I know how to program the formatting issues to make sure the columns are
|
| Using VBA to parse RTD objectdata | 26 Nov 2007 19:29 GMT | 3 |
I have a spreadsheet which uses the RTD method to get real time data into my spreadsheet. I'd like to use VBA to do some calculations on a large number of these RTD values.
|
| Error Loading UserForm | 26 Nov 2007 19:14 GMT | 4 |
I eager to get some help and am resubmitting this from yesterday... I have a macro with about 20 userforms. As far as I can tell, it worked great in earlier versions of Excel. I am now using the macro on a new machine with Excel 2007. After I call the exact same sub-routine a ...
|
| test mark | 26 Nov 2007 19:04 GMT | 6 |
I currently have two work sheets in an excel document and I need to create a chart to read the one sheet and fill in the other sheet with either an "x" or the mark. as an example the information is on sheet1 and I need it to read the persons
|