Create a List by formula from other data

G

Guest

I have a list of data that was created by formulas in column AH rows 3
through 134. It either states false in the cell or it has find the data
which is a job number like 6021. I want to create a list from that list so
that my list is only the job numbers and I will only have the number of rows
that I have job numbers for. So if out of the cells 3 through 134 I only
have 6 jobs numbers - I want a list of just 6 example:
6021
6022
6023
6075
6080
without any extra rows for the false
 
B

Biff

Hi!

Try this:

=IF(ROWS($1:1)<=COUNT(AH$3:AH$134),SMALL(AH$3:AH$134,ROWS($1:1)),"")

Copy down until you get blanks.

Biff
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top