Answersで回答する時に使う情報のまとめ
毎回、都度探していると大変なのでよく検索するページをまとめます。
何せ英語が分からないので、まず日本語に訳してから答えを考えて、さらに英語に訳さないといけない。
少しでも日本語で考える時間を減らさないと、すぐに他の回答者が回答してしまいます。
世界は今何時? | マイページに戻る | Answers での実績 |
---|---|---|
Answersで回答する時に使う数式のまとめ2 | Toolkit for Salesforce | |
よく使うオブジェクト | SOQL関係のまとめ | 数式の整理 |
関数一覧【独自のまとめページ】 | 数式の演算子と関数 A – H | 数式の演算子と関数 I – Z |
レポートの中での数式 | |
---|---|
Filter a Report for Relative 'Year to Date' Date Ranges | レポート行レベルの数式:使えない項目 Contact.Phone |
Row Level Formula needs to access phone data type |
その他 | |
---|---|
数式 がデータベースに値を格納することはありません -値は常に読み取り時に計算されます。これは、数式フィールドを編集できない可能性があることを意味します。Edit formula filed | 数式ではデータベースに値を保存できないよ。 |
Formula field will not be able to search for the same value of a field unless the two records have parent-child relationship.2つのレコードに親子関係がない限り、数式フィールドはフィールドの同じ値を検索できません。 | テキストフィールドから現在実行中のユーザー数式を作成する方法 |
**$の扱い。**the $ symbol refers to the logged in user, so when you have $Profile.Name, you are referring to the logged in user's profile (if their profile is not CTXS Data Admin, or not, etc...As for $RecordType.Name, it's obsolete, it works just as well without the $ signレコードタイプの$は廃止されて、つけてもつけなくても同じらしい。 | What is the use of $ symbol, especially in validation formula's please explain with example? |
数式フィールドでブランクの時にはゼロでなくてブランク表示にする 数式フィールドの設定と 関数で条件にマッチしなかった時に0でなくNullを設定する | need to calculate tax based on tax method selected |
Idの桁数 | Formula help using record type id |
---|---|
Formula Fields: | ID-15 |
Validation Rules: | ID-15 |
Workflow Rules: | ID-15 |
Approval Processes: | ID-15 |
Process Builder: | ID-18 |
Flow Builder: | ID-18 フローでIdをセットすると18桁、数式では15桁なので変換が必要 CASESAFEID |
Row-Level Report Formulas: | ??? |
Web to Lead | ID-15 |
%型の時は少数で指定する
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
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
)
プロセスビルダーの時の数式
Record type name in process builder formula
[Account].RecordType.DeveloperNameのようにオブジェクト名が必要そう。
(
ISNEW()
||
ISCHANGED( [Account].SBI_code_text__c )
)
&&
NOT( ISBLANK( [Account].SBI_code_text__c ))
&&
[Account].RecordType.DeveloperName = "Account"
サンプル
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)
)
AND(
NOT(ISBLANK(TEXT(Status))),
NOT(ISBLANK(TEXT(Status_SubType))),
ISBLANK(Academic_Engagement__c)
)
Hi everyone need help with a validation rule.
Process Builder Formula Criteria
なんだ?よく分からん
Calculated Measurement Functions
指数関数
Author And Source
この問題について(Answersで回答する時に使う情報のまとめ), 我々は、より多くの情報をここで見つけました https://qiita.com/Keiji_otsubo/items/9e6e0e946826133eddc7著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .