• Indi Ross
  • NEWBIE
  • 0 Points
  • Member since 2021

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

I am trying to create workflow rule which will update picklist value based on some amount but getting some error.
IF(  SBQQ__NetTotal__c > 100000,

ISPICKVAL( SBQQ__Quote__r.Implementation_Services__c , "Silver"),

IF( SBQQ__NetTotal__c < 100000  && SBQQ__NetTotal__c > 500000, ISPICKVAL( SBQQ__Quote__r.Implementation_Services__c , "Gold"),

IF( SBQQ__NetTotal__c < 500000  && SBQQ__NetTotal__c > 4000000, ISPICKVAL( SBQQ__Quote__r.Implementation_Services__c , "Platinum"),

IF( SBQQ__NetTotal__c < 4000000, ISPICKVAL( SBQQ__Quote__r.Implementation_Services__c , "Diamond", NULL))))
Dear All,

I have created global action with VF and Controller to get users current location.
It is working fine on web (laptop) but the same code is not working in android.

Kindly help.