Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
If it was me I would just run a macro to loop through column "B" as you listed. In the example I submitted it kicks up a message box telling you what the corresponding number value is when it goes above 35.
Code:
Sub FindValue() Dim rcount As Integer Dim a As Integer 'gets a count of how many rows there are in column B rcount = Range("B" & Rows.Count).End(xlUp).Row 'loops through looking for a value greater than 35 in column B For a = 1 To rcount If Range("B" & a) 35 Then MsgBox (Range("A" & a)) Exit Sub Else End If Next a End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count number of cells until blank cell is reached | Excel Worksheet Functions | |||
Inserting the same value until the same value is reached again | Excel Discussion (Misc queries) | |||
Add one until 171 is reached | Excel Worksheet Functions | |||
Some formula to add results until a given value is reached? | Excel Worksheet Functions | |||
Adding a certain number until minimum is reached | Excel Discussion (Misc queries) |