function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ShravanKumarBagamShravanKumarBagam 

Make amount field read only on opportunity whenever an opportunity stage is closed won.

Hi

Mike JoeMike Joe

Hi,

 

You can try this Validation Rule:-

 

AND( TEXT(StageName) ="Closed Won", ISCHANGED( Amount ))

 

Thanks

Pravesh RanaPravesh Rana

Hi,

 

Some thing like this will do...

 

IF( AND(ISPICKVAL(StageName,"Closed Won") , ISCHANGED( Amount )),true,false)

 

Hope this helps

TrimbleAgTrimbleAg

I see above the validation rule to prevent a change, but if you want to have it read only you would have to have the recordtype change update that status, create a new page layout and then lock this field on the new layout.

 

PB

Steve :-/Steve :-/

Try a VR like this:

 

AND( 
OR( 
IsWon = TRUE, 
PRIORVALUE(IsWon) = TRUE), 
ISCHANGED(Amount))