0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Long Text Area フィールドを数式で使う

Last updated at Posted at 2022-10-25

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

この回答ではISBLANKが使えたと言っているけど、本当かな?

Long Text Area(32768)

ISBLANK	(Long_text__c)

Error: You referenced an unsupported field type called "Long Text Area" using the following field: Long_text__c

LEN(Long_text__c) > 0

Error: You referenced an unsupported field type called "Long Text Area" using the following field: Long_text__c

Long Text Area(500)

ISBLANK	(Long_text__c)

Error: You referenced an unsupported field type called "Long Text Area" using the following field: Long_text__c

LEN(Long_text__c) > 0

Error: You referenced an unsupported field type called "Long Text Area" using the following field: Long_text__c

Text Area(255)

問題ない

Rich Text Area(256)

ISBLANK	(Long_text__c)

Error: You referenced an unsupported field type called "Rich Text Area" using the following field: Long_text__c

LEN(Long_text__c) > 0

Error: You referenced an unsupported field type called "Rich Text Area" using the following field: Long_text__c

REGEX

REGEXは使えるようです

入力規則を使う場合は以下で対応できるとは思います。

AND(
REGEX(<field name>, '(.*\r?\n.*)*'),
NOT(ISBLANK(<field name>))
)
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?