0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Salesforceのレポート集計条件を設定しよう~「30~45日前」のように日数の括りを分けて表示する方法

Posted at

こんにちは。
本橋孝昭です。

Salesforceのレポートの検索条件で「30~45日前」のように日数の括りを分けて表示する方法をご紹介します

今回は
「商談の完了予定日が「30~45日前」の商談一覧の表示」
とします

ステップ1 商談オブジェクトに数式項目を作成

まずは商談オブジェクトに数式項目を作成しましょう

「30~45日前」の場合、数式項目(チェックボックス型)で下記数式を作成してください

AND( CloseDate <= TODAY()-30, CloseDate >= TODAY()-45)
商談01.png

ステップ2 レポートを作成 検索条件で 数式項目=TRUE に設定する

test02.png

上記数式項目を作成し設定すると「30~45日前」のように日数の括りを分けて表示することが可能です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?