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?

Salesforceレポートの数式項目~オブジェクト間の値の差分を確認する方法

Posted at

本橋孝昭です。

今回jはレポートの数式を使用してオブジェクトでリレーションがあるオブジェクトのレコードが同じ値の場合はTRUEやFALSEを表示させる数式項目を作成します。

今回は例として「商談オブジェクトの商談名」と「その商談に紐づく取引先」 が同じであればTRUE 異なればFALSEにする数式を作成します

数式はこのようになります

IF(OPPORTUNITY_NAME=ACCOUNT_NAME, "TRUE", "FALSE")

image.png

行レベルの数式をクリック
image.png

出力種別を「テキスト」にして以下数式を入力
IF(OPPORTUNITY_NAME=ACCOUNT_NAME, "TRUE", "FALSE")

image.png

レポートを保存

image.png

このように設定すれば取引先名と商談名の差異によりTRUE FALSEの表示が可能です
image.png

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?