List only cells with positive values

tghcogo

New Member
Joined
Sep 15, 2009
Messages
8
Hello all

I have two columns of data, which are constantly being added to. Column A is a unique name (no duplicates) and column B is its corresponding value. In many instances the value in column B is zero. I want to produce a list in column C with the names that have a positive value which will update automatically as names and values are added to column A and B. Is this possible?
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Hello all

I have two columns of data, which are constantly being added to. Column A is a unique name (no duplicates) and column B is its corresponding value. In many instances the value in column B is zero. I want to produce a list in column C with the names that have a positive value which will update automatically as names and values are added to column A and B. Is this possible?
What version of Excel are you using?
 
Upvote 0
Oops it's 2003
OK, since you'll be adding data we need to create a dynamic named range.

Goto the menu Insert>Name>Define
Name: Values (or whatever name you want to use as long as it's a valid name!)
Refers to: =$B$2:INDEX($B$2:$B$100,COUNTA($A$2:$A$100))
Use a reasonable end of range that allows for expected future data addition.
OK out

I'm assuming that there are no empty/blanks cells within the data range.

Enter this formula in C1. This will return the count of values that are >0.

=COUNTIF(Values,">0")

Enter this array formula** in C2:

=IF(ROWS(C$2:C2)>C$1,"",INDEX(A:A,SMALL(IF(Values>0,ROW(Values)),ROWS(C$2:C2))))

** array formulas need to be entered using the key combination of CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT key then hit ENTER.

Copy down until you start getting blank cells then copy down additional cells to allow for future returns when new data is added to the data table. How many rows should you copy the formula to? I don't know, only you know how many returns are possible.
 
Last edited:
Upvote 0
This works very well.... How would I make the corresponding values show in column D?
Column C now shows what values are positive, but could column D show what those values are?

Thanks,
Chester21
 
Upvote 0

Forum statistics

Threads
1,214,912
Messages
6,122,204
Members
449,072
Latest member
DW Draft

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top