Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have unsucessfully tried to get this macro to stay within a range of a
worksheet ("E3:AU65535") to perform the following function/results. I have columns of 0's with 1's and 2's in them. The 1 is a start date and the 2 is an end date. I want to find each occurance and data fill with 1's inbetween the 1's and 2's. The rest of the worksheet should not be changed. I have tried several different approaches....still looking....my find statement end up going outside of the range. Can anyone help? Thanks........... Sub FindOnes() Dim DataWithOnes As Range Dim Topcell As Variant Dim Bottomcell As Variant Set DataWithOnes = ActiveSheet.UsedRange For Each c In ActiveSheet.UsedRange Cells.Find(What:="1", After:=ActiveCell, LookIn:=xlValues, LookAt:= _ xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext, MatchCase:= _ False, SearchFormat:=False).Activate If ActiveCell.Value = 1 Then Set Topcell = ActiveCell Cells.Find(What:="2", After:=ActiveCell, LookIn:=xlValues, LookAt:= _ xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext, MatchCase:= _ False, SearchFormat:=False).Activate If ActiveCell.Value = 2 Then Set Bottomcell = ActiveCell If Topcell = 1 Then Set Topcell = Topcell Range(Topcell, Bottomcell).Select Selection.FillDown Bottomcell.Select Set DataWithOnes = ActiveSheet.UsedRange End If End If If DataWithOnes Is Nothing Then GoTo done End If Next |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Performing Action on a Range of Rows | Excel Discussion (Misc queries) | |||
Performing Action on a Range of Rows | Excel Discussion (Misc queries) | |||
Performing a function on visible cells only in a range | Excel Discussion (Misc queries) | |||
Macro not performing | Excel Programming | |||
auto_open macro not performing as expected | Excel Programming |