Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I would like to replace the last section of this code
[SpecialCells(xlCellTypeBlanks)] with something that tells excel to look for cells with the value "0" in it. Set rng = .Range(.Cells(2, col), .Cells(LastRow, col)) _ .Cells.SpecialCells(xlCellTypeBlanks) I am sure this is very simple, just not sure how to do it. As always, any help is very much appreciated. Kevin |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Option Explicit
Sub testme() Dim myRngToSearch As Range Dim rng As Range Dim FoundCell As Range Dim wks As Worksheet Dim col As Long Set wks = ActiveSheet col = 3 With wks Set myRngToSearch = .Range(.Cells(2, col), _ .Cells(.Rows.Count, col).End(xlUp)) With myRngToSearch Set FoundCell = .Cells.Find(what:="0", _ after:=.Cells(1), _ LookIn:=xlValues, _ lookat:=xlWhole, _ searchdirection:=xlPrevious, _ MatchCase:=False) End With If FoundCell Is Nothing Then 'no 0's MsgBox "can't finish!" Else set rng = .Range(.Cells(2, col), FoundCell) 'rest of code End If End With End Sub DoooWhat wrote: I would like to replace the last section of this code [SpecialCells(xlCellTypeBlanks)] with something that tells excel to look for cells with the value "0" in it. Set rng = .Range(.Cells(2, col), .Cells(LastRow, col)) _ .Cells.SpecialCells(xlCellTypeBlanks) I am sure this is very simple, just not sure how to do it. As always, any help is very much appreciated. Kevin -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
count specific text that occurs in a range of cells | Excel Discussion (Misc queries) | |||
formula to count cells containing #'s in a specific range | Excel Worksheet Functions | |||
How do I sum a date specific range of cells? | Excel Worksheet Functions | |||
Determine which cells from a specific range equal a certain sum | Excel Worksheet Functions | |||
Countif for specific cells rather than a range ???? | Excel Worksheet Functions |