ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Finding an occurence (https://www.excelbanter.com/excel-programming/384820-finding-occurence.html)

Darin Kramer

Finding an occurence
 
Hi There,
Two columns of Data
A1 to A10 text (say dog, cat, mouse etc)
B1 to B10 - either a 1 or a 0 - 1 is a problem, 0 is okay. (these change
based on other criteria)

I would like to list beneath the data all instances of problems (ie for
all cases where column B has a zero, list the value in column A). Not
sure if combination of Match or Index would do it, but Im struggling!

Any ideas most welcome....

Regards

D


*** Sent via Developersdex http://www.developersdex.com ***

merjet

Finding an occurence
 
If you add headers, a Filter (menu Data | Filter) will do it. Choose
Advanced Filter if you want to put the results elsewhere.

Hth,
Merjet



Don Guillett

Finding an occurence
 
datafilterautofilter

--
Don Guillett
SalesAid Software

"Darin Kramer" wrote in message
...
Hi There,
Two columns of Data
A1 to A10 text (say dog, cat, mouse etc)
B1 to B10 - either a 1 or a 0 - 1 is a problem, 0 is okay. (these change
based on other criteria)

I would like to list beneath the data all instances of problems (ie for
all cases where column B has a zero, list the value in column A). Not
sure if combination of Match or Index would do it, but Im struggling!

Any ideas most welcome....

Regards

D


*** Sent via Developersdex
http://www.developersdex.com ***



Darin Kramer

Finding an occurence
 
Sorry - forgot to mention - CANT be autofilter - as it needs to happen
automatically without user involvement.

Regards

D



*** Sent via Developersdex http://www.developersdex.com ***

merjet

Finding an occurence
 
Try this.

Sub macro1()
Sheets("Sheet1").Range("A13:B22").Clear
iRow = 13
For Each c In Sheets("Sheet1").Range("B1:B10")
If c = 1 Then
Sheets("Sheet1").Range("A" & iRow) = c.Offset(0, -1)
Sheets("Sheet1").Range("B" & iRow) = c
iRow = iRow + 1
End If
Next c
End Sub

Hth,
Merjet




All times are GMT +1. The time now is 08:16 PM.

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