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
Kim Lebicz 2Kim Lebicz 2 

Rollup Helper vs Triggers

I am using Rollup Helper to rollup summary values to Account from various related objects. The problem is that I am now hitting CPU Limits because I have too many. Will creating triggers to do the rollup summaries help avoid the limits? 
Best Answer chosen by Kim Lebicz 2
Navin Selvaraj23Navin Selvaraj23
Hi Kim,

Unless you are using soql queries inside the for loop, you can use trigger to update the rollup summaries. IT will not create any cpu limit exception. While implementing the code, you have to builkify the code to handle multiple insertion of records.

All Answers

Navin Selvaraj23Navin Selvaraj23
Hi Kim,

Unless you are using soql queries inside the for loop, you can use trigger to update the rollup summaries. IT will not create any cpu limit exception. While implementing the code, you have to builkify the code to handle multiple insertion of records.
This was selected as the best answer
Kim Lebicz 2Kim Lebicz 2
Thank you Navin for the response. I will try that.