• Mikeb66
  • NEWBIE
  • 50 Points
  • Member since 2009

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

I have created monthly reminder tasks to be assigned to the Opportunity Owner for Renewal Opportunities based on the Close Date.

 

Close Date - 180 Days, Close Date - 150 Days....

 

I would like the Task Due Date to update if the Close Date gets changed.

 

Has anyone faced a similar issue and have a solution to share?

I have several Custom Fields that I created at the Opportunity Product Level that I want to appear on the Quote Template. I attempted to create a New Quote Template, but there doesn't seem that there is a way to Select which fields appear in the Line Item section.

 

I attempted to create a Formula on the Quote Line Item page that would map the Custom Opportunity Product field(s) to the Quote Line Item, but when I look at the available fields, none of my Custom Opportunity Product fields are available.

 

Salesforce support told mt ehat I can do this with a Formula, but of course, they don't support formulas...

 

Does anyone have a way to do this?

How do I enter a multi-line value in a Text Field Update?

 

For Example, I want to populate a field with steps:

 

Step 1...

Step 2...

 

I've tried to just put the text in " " but that's not working. Any suggestions?

I'm attempting to create a Validation Rule for an Opportunity based on an Opportunity Split. Basically, we can have up to 3 reps own an Opportunity and each gets a % of the Amount. I want to create a rule that will validate that the 3 % fields = 100% and that the Calculated Value for each portion of the Split = the Amount.

 

Here are the Formulas that I created:

 

 X2nd_Rep__c + X3rd_Rep__c + Primary_Rep__c ==100

 

This throws no errors when I check the Syntax, but the rule doesn't seem to do what I want it to. I can enter in 100% for each Sales Rep % field and no error is thrown, I can also enter in values that total to less than 100 and still no error is thrown.

 

The other formula I have is to verify that the Sum of the Rep Splits = the Amount. Here is the formula:

 

Primary_Rep_Bookings_Amount__c  +  X2nd_Rep_s_Booking_Amount__c  +  X3rd_Rep_s_Booking_Amount__c  == Amount

 

Please let me know what I'm doing wrong or if there is a better way to do this.

 

 

I'm attempting to create a formula dependent on the "Opportunity Type" field. What I'm looking to do is display a % in the a new field called "Revenue Factor". I have attempted to create what I thought was correct below, but it is not working, I get the following error:

 

Error: Syntax error. Extra IF

 

IF ( ISPICKVAL ( Type, "New" ) , (Days_left_in_FY__c - 60) / 365)
IF ( ISPICKVAL ( Type, "Hosting" ) , (Days_left_in_FY__c - 60) / 365)
IF ( ISPICKVAL ( Type, "Renewal" ) , (Days_left_in_FY__c) / 365)
IF ( ISPICKVAL ( Type, "Upgrade" ) , (Days_left_in_FY__c) / 365)
IF ( ISPICKVAL ( Type, "Volume" ) , (100)
IF ( ISPICKVAL ( Type, "Client Integrations" ) , (100)
IF ( ISPICKVAL ( Type, "Prof Services" ) , (100)
IF ( ISPICKVAL ( Type, "Harmony Volume Upside" ) , (100) , null

 

 

Any suggestions???

Message Edited by Mikeb66 on 09-02-2009 07:49 AM
I would like to create a custom field that always displays the last day of the month of the close date. Any ideas on how to create this formula?