1
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 3 years have passed since last update.

【Salesforce】数式項目でアイコン表示

Posted at

#きっかけ
できるんだろうな~と思ってはいたけど
実装する機会がやっと最近あったのでまとめました。

Salesforceのヘルプ を見てもよく分からなかったので自己流です
静的リソースつかいます。手順は2つだけとっても簡単です。

#仕様
商談のフェーズごとに下記アイコンを表示する(新規は無し)

提案中  失注  成立
  

#手順
①静的リソースにアイコン画像をアップロード
image.png
静的リソースを新規作成します。
image.png
手順②で使用するため、静的リソースの名前を控えておきます。

②数式項目の作成
数式(テキスト)の項目を作成します。
image.png
数式は↓です。IMAGE()で静的リソースのファイルを指定します。

CASE( StageName, 
      "提案中", IMAGE("/resource/Proposal", "",25,25), 
      "失注",IMAGE("/resource/ClosedLost", "",25,25),
      "成立", IMAGE("/resource/ClosedWon", "",25,25),
      "")

これで準備は完了です!!

#動作確認
リストビューに表示してみました。アイコンはフェーズと連動しています。
image.png
(画像が白黒で見分けがつきにくいですね!例なのであしからず。)

#参考
https://help.salesforce.com/s/articleView?id=000327122&type=1
https://help.salesforce.com/s/articleView?id=sf.customize_functions_i_z.htm&type=5

1
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
1
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?