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
Pranathi AnukuriPranathi Anukuri 

write a formula field for If the salary field is 10000 the total salary should increase 10% and show the result in Percentage

write a formula field for If the salary field is 10000 the total salary should increase 10% and show the result in Percentage.
Jolly_BirdiJolly_Birdi
Hello Anukuri

I dont get the show result in percentage. If you want to increase the value by 10% then you can use the below formula:

IF(Salary>10000, (Salary + Salary * 0.1), Salary )

If it resolve your query, then please like and mark it as best answer.


Thanks
Jolly Birdi