0

Business Processes

Email to Contact

Object: TestAppCon

Description

Send an email to contact when appId field and conId field on TestAppCon are populated

Evaluate the rule when a record is:

created, and any time it’s edited to subsequently meet criteria

Rule Criteria (Filter)

what could be the rule criteria for this???

Tried this :- IF( ISNULL( Application_c ) && ISNULL( Contact_c ) , FALSE, TRUE) Its not working

3
  • can you please tell what is the data type of those two fields? Commented Sep 30, 2013 at 9:44
  • This fields are lookup to application and contact. Commented Sep 30, 2013 at 9:51
  • try this : NOT( AND( ISBLANK(Application_c), ISBLANK(Contact_c) ) ) Commented Sep 30, 2013 at 10:10

1 Answer 1

1

Use ISBLANK instead of ISNULL.

"Use ISBLANK instead of ISNULL in new formulas. ISBLANK has the same functionality as ISNULL, but also supports text fields. Salesforce will continue to support ISNULL, so you do not need to change any existing formulas."

Source: http://na3.salesforce.com/help/doc/en/customize_functions_i_z.htm#ISBLANK

0

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.