Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am stumped. The subroutine below runs fine, but when I run a similar sub
using a different variable which is set to a different column, it goes back to checking the column in the first sub. I will show the sub that works (variable is ClosCheck). The second sub is identical except for the variable is PastCheck. I will be most grateful if you can solve this Sub MoveCompletedTradesLoop() 'Define Variables Dim TradesEntered As Range, ClosCheck As Range, Set ClosCheck = Worksheets("Analysis").Columns(46) 'Define ItmSeq Range With Sheets("Analysis") Set TradesEntered = Range("at17:at56") End With 'Loop: Check for complete trades, copy to Trade History For Each ClosCheck In TradesEntered If ClosCheck = "True" Then 'Make this section a Sub and call it here ClosCheck.EntireRow.Select Selection.Copy Sheets("TradeHistory").Select Range("A4").Activate Selection.End(xlDown).Select ActiveCell.Offset(rowoffset:=1, columnoffset:=0).Activate ActiveCell.EntireRow.Select Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False Application.CutCopyMode = False Range("A1").Select Sheets("Analysis").Select Else MsgBox ("That's all") 'Goes with Else. Comment out Exit Sub 'Goes with Else. Comment it out. End If Next 'Ends "For Each" Loop Set ClosCheck = Nothing End Sub SECOND SUB: Sub MovePastTradesLoop() 'Define Variables Dim TradesEntered As Range, PastCheck As Range ' Set PastCheck = Worksheets("Analysis").Columns(48) 'Define ItmSeq Range With Sheets("Analysis") Set TradesEntered = Range("at17:at56") End With 'Loop: Check for complete trades, copy to Trade History For Each PastCheck In TradesEntered If PastCheck = "True" Then 'Make this section a Sub and call it here PastCheck.EntireRow.Select Selection.Copy Sheets("TradeHistory").Select Range("A4").Activate Selection.End(xlDown).Select ActiveCell.Offset(rowoffset:=1, columnoffset:=0).Activate ActiveCell.EntireRow.Select Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False Application.CutCopyMode = False Range("A1").Select Sheets("Analysis").Select Else ' MsgBox ("OK") 'Goes with Else. Comment out Exit Sub 'Goes with Else. Comment it out. End If Next 'Ends "For Each" Loop 'Protect End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Vlookup with variable column reference | Excel Worksheet Functions | |||
Cell reference with variable column | Excel Worksheet Functions | |||
Variable column reference in formula | Excel Discussion (Misc queries) | |||
Copy formula down a column does not use correct cell reference | Excel Discussion (Misc queries) | |||
how do I use variable column and rows using other cell reference . | Excel Worksheet Functions |