Lotus notes 用于筛选包含特定文本的日历项的Lotus公式

Lotus notes 用于筛选包含特定文本的日历项的Lotus公式,lotus-notes,lotus-formula,Lotus Notes,Lotus Formula,我对Lotus脚本和公式语言相当陌生。我正在尝试创建一个只显示特定日历项的视图-视图选择如下所示 SELECT Form = "Appointment" | AppointmentType = "0" | AppointmentType = "2"| AppointmentType = "3" 这很简单,但似乎效果不错。下一步是,我不想显示部分主题包含“Accepted:”的文档。这是如何实现的 谢谢。您可以使用此功能 !@Contains("Subject"; "Accepted:")

我对Lotus脚本和公式语言相当陌生。我正在尝试创建一个只显示特定日历项的视图-视图选择如下所示

  SELECT Form = "Appointment" | AppointmentType = "0" | AppointmentType = "2"| AppointmentType = "3"
这很简单,但似乎效果不错。下一步是,我不想显示部分主题包含“Accepted:”的文档。这是如何实现的

谢谢。

您可以使用此功能

!@Contains("Subject"; "Accepted:")
您将需要一个与现有选择相关的逻辑And:

SELECT (Form = "Appointment" | AppointmentType = "0" | AppointmentType = "2"| AppointmentType = "3") & (!@Contains("Subject"; "Accepted:"))

同意。我猜原来的SELECT是不正确的,应该是SELECT Form=“Appointment”&(AppointmentType=“0”| AppointmentType=“2”| AppointmentType=“3”)或者简而言之:SELECT Form=“Appointment”&AppointmentType=“0”:“2”:“3”