Share via

Label Help

Anonymous
2024-10-10T17:33:00+00:00

I would like to make a sheet of labels (Using Avery 5160) where all the labels on the page are not the same. Each column would be a different label so I have 10 of each of 3 different ones.

Can't figure out.

Microsoft 365 and Office | Word | For business | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

4 answers

Sort by: Most helpful
  1. Suzanne S Barnhill 278.1K Reputation points MVP Volunteer Moderator
    2024-10-11T00:36:18+00:00

    Assuming you're typing the labels rather than using a mail merge, type the three addresses in the first row. Then select the top cell in the first column and copy the content. Select the entire column and paste. Repeat for the second and third columns.

    Was this answer helpful?

    2 people found this answer helpful.
    0 comments No comments
  2. Doug Robbins - MVP - Office Apps and Services 323.1K Reputation points MVP Volunteer Moderator
    2024-10-11T00:37:08+00:00

    In Excel, run a macro containing the following code when the sheet with the data is the active sheet

    Sub ProcessData()

    Dim i As Long, j As Long, k As Long, m As Long, n As Long

    Dim shtSource As Worksheet

    Dim shtTarget As Worksheet

    Set shtSource = ActiveSheet

    Set shtTarget = Worksheets.Add

    m = 1

    With shtSource.Range("A1")

    For k = 0 To .CurrentRegion.Columns.Count - 1 
    
        shtTarget.Range("A1").Offset(0, k) = .Offset(0, k) 
    
    Next k 
    
    For i = 1 To .CurrentRegion.Rows.Count - 1 
    
        For n = 0 To 9 
    
            For k = 0 To .CurrentRegion.Columns.Count - 1 
    
                shtTarget.Range("A1").Offset(i - 1 + n + m, k) = .Offset(i, k) 
    
            Next k 
    
        Next n 
    
        m = m + 9 
    
    Next i 
    

    End With

    End Sub

    Set the new sheet created by the above macro as the data source for the Word Mail Merge Main document.

    Then, delete all of the labels from the mail merge main document, EXCEPT for the top left label, and then format the document with the appropriate number of "newspaper" style columns (via the Page Setup dialog) and change the type of mail merge main document from the Labels type to the Directory type.  Then execute the merge.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  3. Doug Robbins - MVP - Office Apps and Services 323.1K Reputation points MVP Volunteer Moderator
    2024-10-14T21:16:55+00:00

    If you send me a copy of the data source, I will run the macro over it and create the labels for you.

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2024-10-14T20:47:53+00:00

    Hi Doug,

    I really appreciate your reply but this is way over my more or less self-taught computer skills. I only function at the Go to the Labels menu, click on new label, click on size, click on ........ etc. type thing!

    Was this answer helpful?

    0 comments No comments