How do I add another line in here. I keep getting error?
'Type of revision
If oRevision.Type = wdRevisionInsert Then
.Cells(3).Range.Text = "Inserted"
'Apply automatic color (black on white)
oRow.Range.Font.Color = wdColorAutomatic
Else
.Cells(3).Range.Text = "Deleted"
'Apply red color
oRow.Range.Font.Color = wdColorRed
End If
_______________-
I need to add this to display
Else
.Cells(3).Range.Text = "Property"
'Apply red color
oRow.Range.Font.Color = wdColorRed
End If
'Type of revision
If oRevision.Type = wdRevisionInsert Then
.Cells(3).Range.Text = "Inserted"
'Apply automatic color (black on white)
oRow.Range.Font.Color = wdColorAutomatic
Else
.Cells(3).Range.Text = "Deleted"
'Apply red color
oRow.Range.Font.Color = wdColorRed
End If
_______________-
I need to add this to display
Else
.Cells(3).Range.Text = "Property"
'Apply red color
oRow.Range.Font.Color = wdColorRed
End If