Skip to content

Instantly share code, notes, and snippets.

@nommy
Created June 11, 2012 09:00
Show Gist options
  • Save nommy/2909175 to your computer and use it in GitHub Desktop.
Save nommy/2909175 to your computer and use it in GitHub Desktop.
hoge
IF(
ISNEW(),
Merchandise__r.Total_Inventory__c < Units_Sold__c ,
IF(
Units_Sold__c < PRIORVALUE(Units_Sold__c),
FALSE,
Merchandise__r.Total_Inventory__c < (Units_Sold__c - PRIORVALUE(Units_Sold__c))
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment