CalendarFilters subform - Filter by Category?

The CalendarFilters subform has allowances for filtering by category… How can I access that functionality through the Lotus Notes client?

Thanks.

Bill

FilterType Field Forumula:

FilterText := "Filtering calendar by ";

xxFilter := @If(Filter = “Chair”;“Chair”;

                   Filter = "Type";"Type";

                   Filter = "Status";"Status";

                   Filter = "Category";"Category";"");

FilterText + xxFilter

CalendarFilters form in design view:

Subject: Some info

The feature will not completely work since the Categories column is a multi-valued column and @SetViewInfo does not work for more than 1 value in a column. We are looking into bringing back the Meetings by Category view in a future release.

Subject: Thanks for the reply.