Skip to main content
Bruntha J (Servicemax) 님이 #Formulas에 질문했습니다

Hi

    can we get opportunity owner name in formula field .

case( Owner.Username ,"Ragul",'A', "Maran",'B',"Bhavani",'C',"Alia",'D',null).i got no error but in report came out 'null'.exactly my requirement is, need to  assign  A or B or C  for each opportunity owner .

답변 2개
  1. 2021년 12월 8일 오전 9:13

    Hi,

    These don't look like a valid usernames, usernames should be email format.

    you are testing FirstName or LastName, so your formula is returning null. try this instead

    case( Owner.FirstName ,"Ragul",'A', "Maran",'B',"Bhavani",'C',"Alia",'D',null)
0/9000