Could any one suggest me a formula using attach excel file.
I want three conditions.
1) Date
2) Completed date
3) Unique PO Numbers.
Thanks & Regards
Dnyashwar Gorad
Could any one suggest me a formula using attach excel file.
I want three conditions.
1) Date
2) Completed date
3) Unique PO Numbers.
Thanks & Regards
Dnyashwar Gorad
Are you simply trying to repeat the list in that format on the second sheet? or are you trying to distil the information? If the latter, please give more details.
Ali
Enthusiastic self-taught user of MS Excel who's always learning!
Don't forget to say "thank you" in your thread to anyone who has offered you help. It's a universal courtesy.
You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.
NB: as a Moderator, I never accept friendship requests.
Forum Rules (updated August 2023): please read them here.
Hi I want same PO Number which was completed on different date and status of the PO for the second sheet.
Use this macro to identify all unique value, copy it to sheet 2 and fetch other two column in VLOOKUP
Sub UniqueList()
Dim lastrow As Long
lastrow = Cells(Rows.Count, "A").End(xlUp).Row
ActiveSheet.Range("A2:A" & lastrow).AdvancedFilter _
Action:=xlFilterCopy, _
CopyToRange:=ActiveSheet.Range("H2"), _
Unique:=True
End Sub
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks