LoginSignup
0
0

salesforce 入力規則実装例

Last updated at Posted at 2023-07-14

半角8桁入力規則の実装例:
AND (
NOT ( ISBLANK ( 項目名 ) ) ,
NOT ( REGEX ( 項目名 , "^[ -~ヲ-゚\r\n]*$" ) ),
LEN(項目名) > 8
)

半角英数字入力規則の実装例:
AND (
NOT ( ISBLANK ( 項目名 ) ) ,
NOT ( REGEX ( 項目名 , "^[a-zA-Z0-9]*$" ) )
)

全角入力規則の実装例:
IF ( ISBLANK ( 項目名 ), FALSE, NOT (REGEX( 項目名 , "^[^a-zA-Z0-9ヲ-゚!-~ ]+$") ) )

株式会社PanGuはsalesforce、Java、mulesoft、serviceNowなどの技術者を募集中です!
メール:wangyu@panguinfo.com

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