ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   FIND POSITIVE VALUE (https://www.excelbanter.com/excel-discussion-misc-queries/79044-find-positive-value.html)

FIRSTROUNDKO via OfficeKB.com

FIND POSITIVE VALUE
 
Hi,

how do I select the first positive value in collumn K from row 1 downwards?

Thanks in advance

Darren

--
Message posted via http://www.officekb.com

Ron Coderre

FIND POSITIVE VALUE
 
Try this:

=INDEX(K1:K100,MATCH(TRUE,(K1:K1000),0))

Note: Commit that array formula by holding down the [Ctrl][Shift] keys and
press [Enter].

Adjust range references to suit your situation.

Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro


"FIRSTROUNDKO via OfficeKB.com" wrote:

Hi,

how do I select the first positive value in collumn K from row 1 downwards?

Thanks in advance

Darren

--
Message posted via http://www.officekb.com


Jim May

FIND POSITIVE VALUE
 
one way (in a standard module) paste in:

Sub FindPositiveVal()
Dim lrow As Long
Dim MyRng As Range
Sheets("Sheet1").Range("K1").Select ' CHANGE Sheet Name
lrow = Cells(Rows.Count, 11).End(xlUp).Row
Set MyRng = Range("K1:K" & lrow)
For Each cell In MyRng
If ActiveCell.Offset(1, 0) = 1 Then
ActiveCell.Offset(1, 0).Select
Exit Sub
Else: ActiveCell.Offset(1, 0).Select
End If
Next cell
End Sub

HTH
Jim May


"FIRSTROUNDKO via OfficeKB.com" <u15639@uwe wrote in message
news:5da860e3ce380@uwe...
Hi,

how do I select the first positive value in collumn K from row 1
downwards?

Thanks in advance

Darren

--
Message posted via http://www.officekb.com





All times are GMT +1. The time now is 04:43 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com