• nickfs92840
  • NEWBIE
  • 25 Points
  • Member since 2009

  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 31
    Questions
  • 108
    Replies

I  have a custom object with custom checkboxes, per the screenshot, how can I setup a "Select All" checkbox that will trigger 6 other checkboxes? Any help would be appreciated once again! Thank you in advance!

 

 

Click here for screenshot

Hello, I created this Validation Rule, however, it does not execute properly when I save a record.

 

The idea is when "In Negotiations" is "No" and the field "Description of Negotiation" is left blank and user tries to save the record, the user should be prompted to fill in the "Description of Negotiation" field, however, this is not executing correctly.

 

Any ideas?

 

Thanks!

 

 

AND(
ISPICKVAL(In_Negotiations__c, "No"),
ISNULL(Description_of_Negotiation__c))

 

We have a URL link that I would need to work in hand with a current custom text field (TIN__c). 

 

What we need is this URL when clicked on, to pickup the TIN__c field and navigate the user to an internal intranet server web page. 

 

So, when the user clicks the URL, it will find the TIN__c field, and navigate the user to an internal intranet server. 

 

here is the URL 

http://nap-sql-01/Reports/Pages/Report.aspx?ItemPath=%2fNet+Dev+-+Self+Service+Reports%2fNegotiator+Contracting+Resources%2fNegotiator+Resource+Home+Page

 

Is this even possible?

 

Here is the scenario, have a percentage field (percent__c), that currently has a validation rule setup to when it is left blank, the user must fill it in before saving or it will error out. What I need is for a particular user profile to be exempt from the validation rule I have setup and save the record wether the field is blank or not. 

 

Here is my attempt to in my validation rule but does not work at all, help! :)

 

ISBLANK(TEXT(percent__c),
NOT($Profile.Name = "System Administrator"
)

 

 

 

Have a custom object name "Overview", created a new custom field data type "formula" named Account. The Account field is being pulled from another custom object "Highlight". Below is my formula:

 

Highlight__r.Account__c

 

However, when pulling the fied into the Overview field, i get the ID format instead (see screenshot: http://cl.ly/HXhM). 

 

Is there any way I can get it to show the text instead of the ID? 

 

Thanks!

 

 

I have a custom object with two percent fields. If the "Rate1__c" percentage field has a number entered, but "Rate2__c" is blank and user tries to save, the record should error out and prompt the user to complete the "Rate2__c" field.

I need a VR with this project that is 99% complete and this will save me! lol Thanks!

The API's are:
Rate1__c
Rate2__c

Date Type: Percent

I have an object where a pick list is setup, and when an item is selected from the pickiest, a % field is required to be filled in with a percentage. 

 

The API's are:

 

Picklist = Local_Type__c
% field = Rate_A__c
% field = Rate_B__c

 

 

Here are some scenarios that may be made during the selection process: 

 

Scenario 1
When Picklist "Local_Type__c" is selected and from the menu selections, "Type 1" is selected, % field "Rate_A__c%" is required. 
 
Scenario 2
When Picklist "Local_Type__c" is selected and from the menu selections, "Type 2" is selected, % field "Rate_B__c" is required. 
 
Scenario 3
When Picklist "Local_Type__c" is selected and from the menu selections, "Type 1 and Type 2" are selected, % fields "Rate_A__c" and "Rate_B__c" are required.  

 

Please help in creating this validation rule for me. Many thanks!