• WonderfulStar
  • NEWBIE
  • 0 Points
  • Member since 2011

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 2
    Replies

I have created whole dollar discount fields on the Opportunity Products that Roll Up in a custom amount field on the Opportunity however I have a request to override the standard Salesforce amount field with the custom roll up field I have tried to accomplish this with a workflow with a field update this is not working...any suggestions would be great!

 

Below is the field update I have created:

 

 

update_sfamount_field_with_discount  
Descriptionplease reference the other 5000 times I tried.
ObjectOpportunity  
Field to UpdateOpportunity: Amount
Field Data TypeCurrency
Formula ValueAmount__c

Hi if anyone can help with creation of a validation rule that ensures the first 3 digits are "INV" and the last 5 digits are numerical only it would be great.  Below is what I created so far however it doesn't ensure the last 5 are numerical.

 

NOT(
OR(
ISBLANK( X4D_Invoice__c),
LEN( X4D_Invoice__c) = 8,
LEFT(X4D_Invoice__c,3 ) = "INV"))

I have created whole dollar discount fields on the Opportunity Products that Roll Up in a custom amount field on the Opportunity however I have a request to override the standard Salesforce amount field with the custom roll up field I have tried to accomplish this with a workflow with a field update this is not working...any suggestions would be great!

 

Below is the field update I have created:

 

 

update_sfamount_field_with_discount  
Descriptionplease reference the other 5000 times I tried.
ObjectOpportunity  
Field to UpdateOpportunity: Amount
Field Data TypeCurrency
Formula ValueAmount__c

Hi if anyone can help with creation of a validation rule that ensures the first 3 digits are "INV" and the last 5 digits are numerical only it would be great.  Below is what I created so far however it doesn't ensure the last 5 are numerical.

 

NOT(
OR(
ISBLANK( X4D_Invoice__c),
LEN( X4D_Invoice__c) = 8,
LEFT(X4D_Invoice__c,3 ) = "INV"))