毎回、都度探していると大変なのでよく検索するページをまとめます。
何せ英語が分からないので、まず日本語に訳してから答えを考えて、さらに英語に訳さないといけない。
少しでも日本語で考える時間を減らさないと、すぐに他の回答者が回答してしまいます。
世界は今何時? | マイページに戻る | Answers での実績 |
---|---|---|
よく使うオブジェクト | Formula FAQ | 数式を説明する解答例 |
関数一覧【独自のまとめページ】 | 数式の整理 | 数式の制限 |
数式が正しいと思えるが機能していないとき | 画面フロー | 数式フィールドのエラー |
- ExcelのRATE関数:Apexのコード
- 数値の切り上げ
- 2つのフィールドのうち入力されているのが1つだとエラーにする入力規則
- "Treat blank fields as blanks" (not zeros) 「空白フィールドを空白として扱う」(ゼロではない)
- プロセスビルダーの時の数式
- 「相関関係」数値をエクセルの「CORREL」のようにセールフォースクラウドでやりたいのですが。
- 入力規則とフローによるカスタムエラーの使い分けについて
新しいユーザーのセットアップまたはユーザーの再アクティブ化をブロックしますが、パスワードをリセットできる必要があります
Blocking New User Setup or Reactivation of Users, but still need to be able to reset passwords
AND(
$Profile.Name <> 'System Adminstrator',
OR(
ISNEW(),
AND(
ISCHANGED( IsActive ),
PRIORVALUE(IsActive ) = FALSE
)
)
)
%型の時は少数で指定する
AND(
RecordType.Name = 'Self Serve Sales Process',
OR(
ISBLANK(TEXT(New_Renewal__c)),
ISBLANK(Support_Level__c),
Probability <= 0.75
)
)
数式の置き換え
OwnerId <> LastModifiedById --> $User.Id <> OwnerId
数式フィールドで、数式を使う時の注意
PS. Also, whevener you're doing math make sure you select "Treat blank fields as Zeros" instead of Blanks, otherwise you'll need a similar "Exit" on each field
Getting rid of #error when dividing by 0 in formula field. Multiple field values in denominator.
AND(
ISCHANGED( ActivityDate ),
$User.Id <> CreatedById
)
サンプル
When status and status sub type Cloudfield is populated it should not allow the user to save the case with out adding academic engagement from look up.
AND(
NOT(ISBLANK(TEXT(Status))),
NOT(ISBLANK(TEXT(Status_SubType))),
ISBLANK(Academic_Engagement__c)
)
Hi everyone need help with a validation rule.
Restricting the user from overriding the forecast category
AND($Profile.Name <> "System Administrator",
ISCHANGED(ForecastCategoryName),
TEXT(ForecastCategoryName)<>
CASE(StageName,"Stage1","Forecast1","Stage2","Forecast2","Stage3","Forecast3", "Forecast4"))
Restricting the user from overriding the forecast category
なんだ?よく分からん
Calculated Measurement Functions
指数関数
数式ではできない例
Please check this article.
How to retrieve numbers from a Text Field
https://help.salesforce.com/s/articleView?id=000396056&type=1
先頭の文字を大文字にしたい
{!UPPER(LEFT(User.FirstName,1)) + LOWER(RIGHT(User.FirstName,LEN(User.FirstName)-1))}
静的リソース
IF( check_box_field ,IMAGE("/resource/<file name of static resource>/image", "Image") ,NULL)