Skip to main content
I have a custom field in Opportunity Product called 'Unit of Measurement' and  what i am trying to do is show one value "Meter" as the default for users of one profile and "Square foot" as the default for all the other profiles. What is the best way to accomplish this in such a way that this doesn't affect reporting on that field? 
2 respostas
  1. 15 de out. de 2018, 13:47
    Hi Soorajl, 

     

    Create Formula Field :  Opportunity Product Object 

     

    Hi Soorajl, Create Formula Field : Opportunity Product Object IF( $ = 'Profile1' , 'Meter', 'Square foot')

     

    IF( $Profile.Name = 'Profile1' , 'Meter', 'Square foot')

     

     
0/9000