LoginSignup
0
0

More than 1 year has passed since last update.

数式フィールドの文字数問題

Last updated at Posted at 2021-09-30

Answersで回答する時に使う情報のまとめに戻る

基本的にはIF文(中身が同じフィールドをOR条件している場合)があれば、Caseに置き換えるのが定番です。

しかし、今回のケース

IF ( 
NOT ( ISBLANK (  Term_Length__c )),
( TCV_mf3__c / Term_Length__c ),
IF (
NOT ( ISBLANK (  Term_Length_Primary_Quote__c )),
( TCV_mf3__c / Term_Length_Primary_Quote__c ),
( TCV_mf3__c / 12 )))

う~ん、これは無理ですね。

解決策の道筋

TCV_mf3__c / BLANK VALUE(Term_Length__c , BLANKVALUE( Term_Length_Primary_Quote__c , 12 ))

Formula "too big" error

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