Duplicate post
Last edited by Solus Rankin; 08-22-2013 at 11:25 AM. Reason: duplicate
Thanks,
Solus
Please remember the following:
1. Use [code] code tags [/code]. It keeps posts clean, easy-to-read, and maintains VBA formatting.Highlight the code in your post and press the # button in the toolbar.2. Show appreciation to those who have helped you by clickingbelow their posts.
3. If you are happy with a solution to your problem, mark the thread as [SOLVED] using the tools at the top.
"Slow is smooth, smooth is fast."
![]()
Sub YouGetYourOwnSpot() Dim l As Long Dim lRow As Long Dim ws1 As Worksheet Dim ws2 As Worksheet Set ws1 = ActiveSheet lRow = Range("D" & Rows.Count).End(xlUp).Row For l = 2 To lRow If ws1.Range("D" & l).Value <> "" Then Set ws2 = ActiveWorkbook.Sheets.Add(, After:=Sheets(Worksheets.Count)) ws2.Name = ws1.Range("D" & l).Value End If Next l ws1.Activate End Sub
Awesome! Thank you this works perfectly. I appreciate your help.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks