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?

Salesforceでフローを作成しよう~日付項目が1年以内ならチェックをつける

Posted at

Salesforceでフローを作成しましょう

今回は日付項目が1年以内ならチェックをつける というフローです

チェックボックス
testA__c

日付項目
CloseDate

とします。

フローはこちらです

フロー01.png

起動条件の数式はこちらです

フロー02.png

AND( ISCHANGED({!$Record.CloseDate}), {!$Record.CloseDate}+365>TODAY(), {!$Record.CloseDate}<TODAY() )

項目の更新はこちらです

フロー03.png

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?