Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 10-04-2013, 08:34 AM
hummus_it hummus_it is offline Adding a border to every nth row of a word table Windows 7 64bit Adding a border to every nth row of a word table Office 2013
Novice
Adding a border to every nth row of a word table
 
Join Date: Oct 2013
Posts: 3
hummus_it is on a distinguished road
Default

That's pretty much perfect. Is there a way to have the loop reset at rows which contain a certain string?



For example, have something like:
Code:
 For i = 1 To .Rows.Count
      'Restore borders to every 2nd row
      If i Mod 2 = 0 and rowdoesnotcontain Then
        With .Rows(i).Cells
          .Borders(wdBorderTop).LineStyle = wdLineStyleSingle
          .Borders(wdBorderLeft).LineStyle = wdLineStyleSingle
          .Borders(wdBorderBottom).LineStyle = wdLineStyleSingle
          .Borders(wdBorderRight).LineStyle = wdLineStyleSingle
          .Borders(wdBorderHorizontal).LineStyle = wdLineStyleSingle
          .Borders(wdBorderVertical).LineStyle = wdLineStyleSingle
          else 
         
        With .Rows(i).Cells
          .Borders(wdBorderTop).LineStyle = wdLineStyleSingle
          .Borders(wdBorderLeft).LineStyle = wdLineStyleSingle
          .Borders(wdBorderBottom).LineStyle = wdLineStyleSingle
          .Borders(wdBorderRight).LineStyle = wdLineStyleSingle
          .Borders(wdBorderHorizontal).LineStyle = wdLineStyleSingle
          .Borders(wdBorderVertical).LineStyle = wdLineStyleSingle
          
        End With
      End If
    Next
  End With
End With
End Sub
Reply With Quote
  #2  
Old 10-04-2013, 12:04 PM
hummus_it hummus_it is offline Adding a border to every nth row of a word table Windows 7 64bit Adding a border to every nth row of a word table Office 2013
Novice
Adding a border to every nth row of a word table
 
Join Date: Oct 2013
Posts: 3
hummus_it is on a distinguished road
Default

So I' think i've gotten quite close:

Code:
Option Explicit


Sub parenrows()
    Dim i As Long
    Dim c As Object
    With Selection
        If .Information(wdWithInTable) = False Then Exit Sub
        With .Tables(1)
            'Kill any existing borders
            .Borders(wdBorderTop).LineStyle = wdLineStyleNone
            .Borders(wdBorderLeft).LineStyle = wdLineStyleSingle
            .Borders(wdBorderBottom).LineStyle = wdLineStyleNone
            .Borders(wdBorderRight).LineStyle = wdLineStyleSingle
            .Borders(wdBorderHorizontal).LineStyle = wdLineStyleNone
            .Borders(wdBorderVertical).LineStyle = wdLineStyleNone
            For i = 1 To .Rows.Count
                For Each c In .Rows(i).Cells
                    ' Restore borders to every 2nd row
                    If InStr(c.Range.Cells, "(") > 0 Then
                        .Borders(wdBorderBottom).LineStyle = wdLineStyleSingle
                    End If
                Next c
            Next i
        End With
    End With
End Sub
the code bombs at the range.text portion.

Basically, i want to add a bottom line to any row with an open parentheses.

Thanks!

Last edited by hummus_it; 10-04-2013 at 01:59 PM.
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Adding a border to every nth row of a word table Aligning Page Border with Table border without losing formatting :mad: l39linden Word Tables 5 10-04-2013 02:06 AM
Adding a border to every nth row of a word table Excel vba adding field in word table/shape in a header Hdr Excel 1 02-04-2013 04:40 PM
"First column" in word table page break border mj1856 Word Tables 1 04-25-2012 03:21 AM
Adding a border to every nth row of a word table adding rows to word table hklein Word VBA 4 07-18-2011 12:21 AM
Adding a border to every nth row of a word table Table Border The Ink Monitor Word Tables 4 03-03-2011 09:17 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 09:25 AM.


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