VLOOKUP help??

orsm6

Active Member
Joined
Oct 3, 2012
Messages
496
Office Version
  1. 365
Platform
  1. Windows
hi all,

I am hoping this is possible but need some more experienced help.

I hope this makes sense. I am trying to find out if there is a way (using formulas) to look for any value greater than 100 in column N and put the numbers into column BB

in column N almost every second line has a number over 100. another problem I have is that there can often be the same number twice, but I still want both numbers to show up in column BB.

the whole point to this is to not have blank lines between numbers in Column BB.

hope that makes sense, and hope it is possible, thanks for any help!!
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Try in BB2:
Code:
=IFERROR(INDEX(N$1:N$1000,SMALL(IF(N$1:N$1000>100,ROW(N$1:N$1000),""),ROW(A1))),"")
To be confirmed using Contr-Shift-Enter, not Enter only.

Then copy downward

Bye
 
Upvote 0
this works great.

how can I apply this to capture a time value next to the number greater than 100?
 
Upvote 0
You mean getting both the values in column N and in column O?

This in BB2
Code:
=IFERROR(INDEX(N$1:N$1000,SMALL(IF($N$1:$N$1000>100,ROW(N$1:N$1000),""),ROW(A1))),"")
Confirm by Contr-Shift-Enter; then copy to BC2; then copy downward

Bye

Edit:
ignore that, I worked out a solution
Then ignore my answer
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,691
Members
448,978
Latest member
rrauni

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