I need to look through column B at dollar amounts, I need only the ones that are $500 or more and place their values in column E. Also I need to take their name of the user in column A as well but the names will be in column D.
Thanks in advance.
I need to look through column B at dollar amounts, I need only the ones that are $500 or more and place their values in column E. Also I need to take their name of the user in column A as well but the names will be in column D.
Thanks in advance.
Last edited by noodle48; 06-29-2011 at 02:11 PM.
Add a help column first.
Eg
in E2 enter:
=IF(B2>=500,COUNT(E$1:E1)+1,"")
copied down
Then in a separate column, one cell, say in F2, enter =MAX(E:E)
To extract data now...
=IF(ROWS($A$1:$A1)>$F$2,"",INDEX(A:A,MATCH(ROWS($A$1:$A1),$E:$E))
copied down as far as you want...
Then copied across to get Column B, C, D corresponding values.
Where there is a will there are many ways.
If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner
Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.
Can we make this into a vba code?
Perhaps someone else can....
noodle48,
Something like this? (assumes row 1 has headers)
![]()
Sub tgr() [D2].Resize([D2].CurrentRegion.Rows.Count, 2).ClearContents Dim RowIndex As Long, Over500 As Range For RowIndex = 2 To Cells(Rows.Count, "B").End(xlUp).Row If IsNumeric(Cells(RowIndex, "B").Value) And Cells(RowIndex, "B").Value >= 500 Then If Over500 Is Nothing Then Set Over500 = Cells(RowIndex, "A").Resize(1, 2) Else Set Over500 = Union(Over500, Cells(RowIndex, "A").Resize(1, 2)) End If End If Next RowIndex Over500.Copy [D2].PasteSpecial xlPasteAll Application.CutCopyMode = False End Sub
Hope that helps,
~tigeravatar
Thank you very much, this does exactly what I wanted to do.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks