If Account or Partner Account Type equals "Strategic", then return the (text) value of the picklist from the Account or Partner Account field "Strategic_Level__c". If nothing is selected in "Strategic_Level__c", return the value "N/A".
Any ideas? Is it maybe easier to create a formula field than it is to map it from the original field?
5 risposte
So are you looking for something kinda like this? IF(
AND(
TEXT(Account.Type) = "Strategic",
NOT(ISLANK(TEXT( Account.Picklist_1__c )))),TEXT(Account.Picklist_1__c),
IF(
AND(
TEXT( Partner__r.Type ) = "Strategic",
NOT(ISLANK(TEXT( Partner__r.Picklist_1__c )))),TEXT(Partner__r.Picklist_1__c),
"N/A"))