title | keywords | f1_keywords | ms.service | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|---|
Project.CurrentFilter property (Project) |
vbapj.chm131700 |
|
project-server |
|
b97e43ac-2167-80f0-bf5e-609a08f42fd9 |
06/08/2017 |
medium |
Gets the name of the active filter for a project. Read-only String.
expression. CurrentFilter
expression A variable that represents a Project object.
The following example displays the names of the active view, table, and filter in a dialog box
Sub ViewDetails()
Dim Temp As String
Temp = "View: " & ActiveProject.CurrentView & vbCrLf
Temp = Temp & "Table:" & ActiveProject.CurrentTable & vbCrLf
Temp = Temp & "Filter: " & ActiveProject.CurrentFilter
MsgBox Temp
End Sub
[!includeSupport and feedback]