![]() |
|
#1
|
|||
|
|||
|
I have created a form with multiple tables.
When it gets to this part of the code I get Run Time Error '91' Object variable or with block not set I believe it is because the .placeholdertext = nothing How can I fix this? Thank you in advance Code:
With ActiveDocument.Tables(6)
If ContentControl.Range.InRange(.Range) Then
For i = 3 To .Rows.Count
With .Cell(i, 2).Range.ContentControls(1)
If .Range.Text <> .PlaceholderText Then
k = k + 1
For j = 1 To .DropdownListEntries.Count
If .DropdownListEntries(j) = .Range.Text Then
l = l + .DropdownListEntries(j).Value
Exit For
End If
Next
End If
i = i + 1
End With
Next
With ActiveDocument.Tables(1).Rows.Last.Cells(1).Range
If k > 0 Then
.Text = Format(l, "##0")
Else
.Text = vbNullString
End If
End With
End If
End With
|
| Tags |
| runtime error 91, vba |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Run Time Error '1004' | galkej | Excel | 0 | 02-03-2014 06:39 AM |
| Get Run-time Error 11 | Jamtart | PowerPoint | 2 | 08-31-2012 05:04 AM |
Run time error 1004
|
yonasan | Excel Programming | 3 | 06-12-2012 11:08 PM |
| Word Visual Basic error - run time error 504 | crazymorton | Word | 11 | 01-13-2012 04:32 AM |
Run-time error 438
|
cksm4 | Word | 2 | 01-12-2011 03:41 PM |