Dear Joseph,

Please try it..

Sub Unique_List_Creater()
Dim i As Long
Dim col As Long
Dim rw As Long
Dim sh As Worksheet
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
Set sh = ThisWorkbook.Sheets(3)
sh.Range("F2:F" & sh.Cells(Rows.Count, "F").End(xlUp).Row).
ClearContents
sh.Range("F1").Value = "Unique List"
i = sh.Cells(Rows.Count, "F").End(xlUp).Row + 1
j = 2
For col = 1 To sh.Cells(1, 1).End(xlToRight).Column
For rw = 2 To sh.Cells(Rows.Count, 1).End(xlUp).Row
sh.Cells(rw, col).Copy sh.Cells(j, "F")
j = j + 1
Next rw
Next col
sh.Range("F2:F" & sh.Cells(Rows.Count, "F").End(xlUp).Row).RemoveDuplicates
1
Application.ScreenUpdating = True
Application.Calculation = xlCalculationAutomatic
End Sub

see attached sheet for reference


On Thu, Jul 12, 2012 at 9:11 AM, <joseph.cam...@gmail.com> wrote:

> Hi experts,
>
> The formulae provided by the members is working fine when I have data in
> one column. But if I have to do the same from multiple columns, then how do
> I do?
>
> Thanks,
> Joseph
> Sent on my BlackBerry® from Vodafone
>
> --
> FORUM RULES (986+ members already BANNED for violation)
>
> 1) Use concise, accurate thread titles. Poor thread titles, like Please
> Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
> will not get quick attention or may not be answered.
>
> 2) Don't post a question in the thread of another member.
>
> 3) Don't post questions regarding breaking or bypassing any security
> measure.
>
> 4) Acknowledge the responses you receive, good or bad.
>
> 5)  Cross-promotion of, or links to, forums competitive to this forum in
> signatures are prohibited.
>
> NOTE  : Don't ever post personal or confidential data in a workbook. Forum
> owners and members are not responsible for any loss.
>
>
> ------------------------------------------------------------------------------------------------------
> To post to this group, send email to excel-macros@googlegroups.com
>
> To unsubscribe, send a blank email to
> excel-macros+unsubscr...@googlegroups.com




-- 
Thanks & regards,
Noorain Ansari
www.noorainansari.com
www.excelmacroworld.blogspot.com

-- 
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

------------------------------------------------------------------------------------------------------
To post to this group, send email to excel-macros@googlegroups.com

To unsubscribe, send a blank email to excel-macros+unsubscr...@googlegroups.com

Reply via email to