Formula question

edorminey

New Member
Joined
Feb 2, 2014
Messages
15
Hi, I'm still learning Excel and need help with a formula.

I have a column T
I have positive numbers scattered out in 5 cells in the range T2:T100
(I have a formula in range T2:T100 that returns "" if the result is = 0 so most of the cells are blank except for the hidden formula)

I need to find the cells that are > 0 in range T2:T100 and put them in T105:T110 and also give me the values in column S in S105:S110.

Hope this is clear and thanks for your help.
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Well, that almost works perfect.

When I use that formula, it gives me the correct answers, but it skips rows between the answers. How do I give my result without skipped rows?

instead of :
4


5

2

I would like to have
4
5
2
 
Upvote 0
Well, that almost works perfect.

When I use that formula, it gives me the correct answers, but it skips rows between the answers. How do I give my result without skipped rows?

instead of :
4


5

2

I would like to have
4
5
2

P2, control+shift+enter, not just enter, and copy down:
Rich (BB code):
=IFERROR(INDEX($R$2:$R$100,
  SMALL(IF(ISNA($T$2:$T$100),IF($R$2:$R$100<>"",ROW($T$2:$T$100)-ROW($T$2)+1)),
  ROWS($P$2:P2))),"")
 
Upvote 0
That works perfect.

Is there a way to automatically sort the array or do you have to manually sort it.
 
Upvote 0
This first part is part of my actual data. Basically, you have me where I can pull the number in the second column out if the number in the fourth column is = #N/A

The numbers in the third column signify the correct order when they are sorted as in the second example.

When I get the numbers from the second column I would like to be able to sort them, but since they aren't sortable names, I was going to use the third column to sort them. Is that as clear as mud?

How do I pull out the second column result, (such as A1 and put that in one column and then pull out the matching numbers in column three and then sort on column three. Any way to do that?



7834458
A9
7

11179099
A4
2

11305063
A1
0.5
#N/A
11305877
A15
9
#N/A
11305905
D1
33

11305918
A6
4

11306014
B9
16

11306033
C4
23
#N/A

<tbody>
</tbody>


11305063
A1
0.5
#N/A
11179099
A4
2
11305918
A6
4
7834458
A9
7
11305877
A15
9
#N/A
11306014
B9
16
11306033
C4
23
#N/A
11305905
D1
33

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,215,781
Messages
6,126,870
Members
449,345
Latest member
CharlieDP

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