Share via


Application.TableApply Method

Project Developer Reference

Applies a table to the active view.

Syntax

expression.TableApply(Name)

expression   A variable that represents an Application object.

Parameters

Name Required/Optional Data Type Description
Name Optional String The name of the table to apply.

Return Value
Boolean

Example
The following example applies the Variance table to the active view.

Visual Basic for Applications
  Sub ApplyVarianceTable()
    TableApply "Variance"
End Sub

See Also