LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 50
Default Need a loop in my macro

The following macro needs a loop and two variables (with
dimensioning). I would appreciate if anyone can insert them for me,
in place of what would no longer be needed below. In the loop (23
iterations), the macro changes one cell in increments of 0.01. Then,
it (23 times) goes to another cell and goal seeks it to a value that
also increases by 0.01. Then, it simply cuts and pastes the results
of 11 various cells into a column over to the right.

In the next iteration, it adds another 0.01 to the two things
mentioned above, and then pastes the results again over to the right
again, but, this time, by one more column over, so that, ultimately, I
have a 23 column by 11 row matrix of pasted values, in addtion to the
2 column (so my end-right, then right one more cell, operation should
work) by 11 row matrix that I start with.

Here is the macro (with my comments in UPPER CASE), please help! I
promise I will put this in a safe place so i can figure it out next
time, myself. Thanks
Dean

GoalSeekRoutine Macro

Application.Goto Reference:="SecondAssetDesignIRR".

'SET IT INITIALLY TO -0.21

ADD 0.01 TO THE VALUE PREVIOUSLY IN THIS CELL, WHICH CREATES A
RANGE FROM -0.20 TO +0.08 AS WE LOOP THRU, 23 TIMES

Application.Goto Reference:="GrossEquityIRR"
Range("GrossequityIRR").GoalSeek Goal:=0.09, ChangingCell:=Range
("FirstAssetDesignIRR")

'IN THE STATEMENT ABOVE, WHERE THE 0.09 IS, IN THE FIRST LOOP
THRU, IT SHOULD USE A VALUE OF 0.08 AND, ON EACH SUCCESSIVE LOOP THRU,
IT SHOULD ADD 0.01 TO THE VALUE PREVIOUSLY IN THIS CELL, WHICH STARTS
AT 0.08 AND ENDS AT 0.30

'THIS IS THE START OF THE REST OF THS MACRO, WHICH SIMPLY COPIES AND
PASTES.

Application.Goto Reference:="GrossequityIRR"
Application.CutCopyMode = False
Selection.Copy
Application.Goto Reference:="TopLeftCorner ' FYI, THIS IS CELL N6


FOR THE FIRST CELL TO BE COPIED, I WANT THE CURSOR TO GO DOWN BY ZERO
CELLS, THEN DO AN END-RIGHT, AND THEN GO RIGHT BY ONE MORE CELL, THEN
PASTE SPECIAL

Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Application.Goto Reference:="FirstassetIRR"
Application.CutCopyMode = False
Selection.Copy
Application.Goto Reference:="TopLeftCorner"

Range("N7").Select

'INSTEAD OF N7 ABOVE, I WANT THE CURSOR TO GO DOWN BY 1 CELL, THEN DO
AN END-RIGHT, THEN GO RIGHT ONE MORE CELL

Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Application.Goto Reference:="SecondAssetIRR"
Application.CutCopyMode = False
Selection.Copy
Application.Goto Reference:="TopLeftCorner"

Range("N8").Select

'INSTEAD OF N8 ABOVE, I WANT THE CURSOR TO GO DOWN BY 2 CELLS, THEN
DO AN END-RIGHT, THEN GO RIGHT ONE MORE CELL

Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Application.Goto Reference:="P13CBminus"
Application.CutCopyMode = False
Selection.Copy
Application.Goto Reference:="TopLeftCorner"

Range("N9").Select

'INSTEAD OF N9 ABOVE, I WANT THE CURSOR TO GO DOWN BY 3 CELLS, THEN
DO AN END-RIGHT, THEN GO RIGHT ONE MORE CELL

Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Application.Goto Reference:="P13NetIF"
Application.CutCopyMode = False
Selection.Copy
Application.Goto Reference:="TopLeftCorner"
Range("N10").Select

'INSTEAD OF N10 ABOVE, I WANT THE CURSOR TO GO DOWN BY 4 CELLS,
THEN DO AN END-RIGHT, THEN GO RIGHT ONE MORE CELL

Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Application.Goto Reference:="P14WarrantedIF"
Application.CutCopyMode = False
Selection.Copy
Application.Goto Reference:="TopLeftCorner"
Range("N11").Select

'INSTEAD OF N11 ABOVE, I WANT THE CURSOR TO GO DOWN BY 5 CELLS, THEN
DO AN END-RIGHT, THEN GO RIGHT ONE MORE CELL

Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Application.Goto Reference:="P14Recapture"
Application.CutCopyMode = False
Selection.Copy
Application.Goto Reference:="TopLeftCorner"
Range("N12").Select

'INSTEAD OF N12 ABOVE, I WANT THE CURSOR TO GO DOWN BY 6 CELLS, THEN
DO AN END-RIGHT, THEN GO RIGHT ONE MORE CELL

Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Application.Goto Reference:="P13PercentFeeLoss"
Application.CutCopyMode = False
Selection.Copy
Application.Goto Reference:="TopLeftCorner"
Range("N13").Select

'INSTEAD OF N13 ABOVE, I WANT THE CURSOR TO GO DOWN BY 7 CELLS, THEN
DO AN END-RIGHT, THEN GO RIGHT ONE MORE CELL

Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Application.Goto Reference:="P13PercentFeeLoss"
Application.CutCopyMode = False
Selection.Copy
Application.Goto Reference:="TopLeftCorner"
Range("N14").Select

'INSTEAD OF N14 ABOVE, I WANT THE CURSOR TO GO DOWN BY 8 CELLS, THEN
DO AN END-RIGHT, THEN GO RIGHT ONE MORE CELL

Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Application.Goto Reference:="TruePortfolioPercentFeeLoss"
Application.CutCopyMode = False
Selection.Copy
Application.Goto Reference:="TopLeftCorner"
Range("N15").Select

'INSTEAD OF N15 ABOVE, I WANT THE CURSOR TO GO DOWN BY 9 CELLS, THEN
DO AN END-RIGHT, THEN GO RIGHT ONE MORE CELL

Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Application.Goto Reference:="P14NetActualIF"
Application.CutCopyMode = False
Selection.Copy
Application.Goto Reference:="TopLeftCorner"
Range("N16").Select

'INSTEAD OF N16 ABOVE, I WANT THE CURSOR TO GO DOWN BY 10 CELLS,
THEN DO AN END-RIGHT, THEN GO RIGHT ONE MORE CELL

Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
End Sub
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Loop Macro Brian Excel Programming 3 June 17th 08 05:20 AM
Loop in a Macro [email protected] Excel Programming 3 December 3rd 07 10:11 PM
Loop to run macro each tow PST Excel Programming 4 May 18th 07 06:35 PM
Do until loop with use of another macro in loop The Excelerator Excel Programming 9 February 28th 07 02:28 AM
how to put a loop in a macro? Khoshravan New Users to Excel 4 May 14th 06 01:22 PM


All times are GMT +1. The time now is 09:45 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"