Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I got this solved now, thanks to JMB, so no need to do anything more. Thx.
Dean "Dean" wrote in message ... Wow, that was awesome! Unfcfortunately, after doing a lot of custom edit replace setup stuff in a worksheet, someone changed the specs on me, and so I am trying to find quicker ways, via macro, to deal with this! And so I ask: One more please? In the same row, as I move one cell to the right, across 12 * 20 = 240 columns from column L through IQ, all references are currently to the Project 1 worksheet, but I would like it to be to Project 1 (in column L), then project 2 (in column M), all the way through Project 20 (in column AE). Then in the next column, column AF, I would like it to start with Project 1 again, then repeat for another block of 20 columns. Repeat until we've done this a total of 12 times. Hopefully, I can adapt this and the one you've given me earlier to do any more by myself! Thanks so much! Dean wrote in message oups.com... I'd try something like this: Dim strFormula As String Do Until ActiveCell.Value = "" strFormula = ActiveCell.Formula strFormula = Mid(strFormula, 1, InStr(1, strFormula, "25") + 1) ActiveCell.Formula = strFormula ActiveCell.Offset(0, 1).Select Loop |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Edit cut cells | Excel Discussion (Misc queries) | |||
Record Macro and Edit Macro options disabled | New Users to Excel | |||
how to edit cells | New Users to Excel | |||
How to use macro to edit data in Excel cells | Excel Discussion (Misc queries) | |||
How do Macro to EDIT cells? | Excel Programming |