0/1 の結果をチェックする基準として数式 (数値) を使用して検索を保存します。以下は機能部品の例です。
CASE WHEN {activity.date} >= {today}-90 AND {activity.assigned} = {salesrep} THEN 1 ELSE 0 END
また、従業員の記録を知っている特定の営業担当者をここで検索する必要があります。以下を試しました:
CASE WHEN {activity.date} >= {today}-90 AND {activity.assigned} = EMPLOYEE_ID THEN 1 ELSE 0 END
Where EMPLOYEE_ID
= 従業員の internalId。これによりエラーYour formula has an error in it. It could resolve to the wrong datatype, use an unknown function, or have a syntax error. Please go back, correct the formula, and re-submit.
が発生します。これは、"" で囲まれている場合にも発生します。営業担当者オブジェクトを探していると思いますが、数式入力フィールドを介してこれを提供する方法がわかりません。