1
1

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.

Salesfroce入力規則を作成しよう~特定の選択リスト値の場合テキスト項目に値が入る設定

1
Posted at

Salesforceで
・特定の選択リストの時(例:AとBの場合)に特定のテキスト項目の入力を徹底してほしい。
という場合があります。
今回はそんな時に使える入力規則を紹介します

前提:
・選択リストのAPI参照名はtest01
・テキスト型のAPI参照名はtest02

入力規則数式:

OR( AND( ISPICKVAL( test01__c,"A"), ISBLANK( test02__c ) ) , AND( ISPICKVAL( test01__c,"B"), ISBLANK( test02__c ) ) )

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?