Hello all you guru's,
I'm trying to find a VBA solution to a problem I'm having where I need to find a succession of lowest numbers not lower than 50.
This gives me 2.62 which is indeed the smallest figure in my range. However, I want it to show 50.67 which is the lowest number today in my range. I want to do this for the next 5 smallest numbers. (AKA 50.91, 51.3, 55.6, and 55.6).
Also, if one of you could give me a tip to a follow up question, I have to figure how to correctly return the right row of information into the VLOOKUP equation I'm using from the these 5 results. As in, I don't want the 5th result above to return back the 4th results information because they are the same number.
Thanks!
I'm trying to find a VBA solution to a problem I'm having where I need to find a succession of lowest numbers not lower than 50.
Code:
Application.WorksheetFunction.Small(ActiveSheet.Range("C3:C" & LastRow), 1)
Also, if one of you could give me a tip to a follow up question, I have to figure how to correctly return the right row of information into the VLOOKUP equation I'm using from the these 5 results. As in, I don't want the 5th result above to return back the 4th results information because they are the same number.
Thanks!