Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 08-17-2015, 08:57 PM
gmayor's Avatar
gmayor gmayor is offline Craete a set of number in a Table?? Windows 7 64bit Craete a set of number in a Table?? Office 2010 32bit
Expert
 
Join Date: Aug 2014
Posts: 4,142
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default


How about
Code:
Sub NumberTable()
Dim oRow As Row
Dim oRng As Range
Dim lCount As Long
Dim wCount As Long
Dim i As Long
    lCount = 1
    wCount = 1
    With ActiveDocument.Range.Tables(1)
        For i = 1 To .Rows.Count
            Set oRow = .Rows(i)
            If i Mod 2 = 0 Then
                Set oRng = oRow.Cells(1).Range
                oRng.End = oRng.End - 1
                oRng.Text = "L" & Format(lCount, "000")
                lCount = lCount + 1
            Else
                Set oRng = oRow.Cells(1).Range
                oRng.End = oRng.End - 1
                oRng.Text = "W" & Format(lCount, "000")
                wCount = wCount + 1
            End If
        Next i
    End With
lbl_Exit:
    Set oRow = Nothing
    Set oRng = Nothing
    Exit Sub
End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Craete a set of number in a Table?? How to create a table with a number of line depending a number entered by user Cellendhyll Word Tables 3 07-10-2014 05:49 AM
Craete a set of number in a Table?? How Can I Use a Page Number in a Table Header Row jqavins Word 8 01-10-2014 08:43 AM
Craete a set of number in a Table?? Page number in table of Content Ritu Office 1 09-19-2011 05:10 AM
Different Table Number System Nebabon Word 0 08-30-2010 10:23 AM
Different Table Number System Nebabon Word Tables 0 08-27-2010 03:16 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 11:55 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft