• Ann Beattie
  • NEWBIE
  • 10 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 3
    Replies
User cannot change record owner If user is not System Admin, Industry is null and Account created after 1/1/2017
I tried this formula where the Profile Id is for System Administrator  but it fires even if the System Admin is editing the record.
$User.ProfileId  <> "0ei0000001DLN6"&&
 ISCHANGED( OwnerId )&&
 ISBLANK(TEXT(Industry ))&&
  DATEVALUE(CreatedDate) > DATE(2017,01,01)
 
I keep getting this error:
"Please check that you have a filter for Stages that are not equal to Closed Won or Closed Lost."
my filter logic is:
Filter Logic:1 AND (2 AND 3)
1. Amount greater than ""25,000""
2. Stage not equal to "Closed Won" 3. Stage not equal to "Closed Lost"

User-added image
I keep getting this error:
"Please check that you have a filter for Stages that are not equal to Closed Won or Closed Lost."
my filter logic is:
Filter Logic:1 AND (2 AND 3)
1. Amount greater than ""25,000""
2. Stage not equal to "Closed Won" 3. Stage not equal to "Closed Lost"

User-added image
Hi folks, 

I try to complete the "Build a Battle Station App" -> Modify the User Experience. Trail to complete. I checked everything and did it 3 times but every time I get the error:

Challenge Not yet complete... here's what's wrong: 
The 'Resources' related list was not found on the Page Layout 
Note: you may run into errors if you've skipped previous steps.

The Resources Column is in the Page Layout and I add the needed objects. 

Anybody an Idea?
I feel the directions aren't clear. Is the entire formula below belong in the interest rate field? or should there be two formula fields. Thanks 
IF(Principal__c < 10000, 0.02,

 IF(Principal__c >= 10000 &&

  Principal__c < 100000, 0.03, 0.04))

 Principal__c  *  EXP( Interest_Rate__c  * (YEAR(TODAY()) - VALUE(YearStarted)))
)