I have a form where my team fills in daily sales activity data. I have to fetch the data of each member and display it another sheet. Though I can do it with query, I have written a custom function that takes 3 arguments and search in the form responses and returns an array of data. Daily(name,week,day) is my function. Every time the formula is called, the search happens on the entire form response data.
Now the issue is the formula is used 13*365(13 people ad 365 days) times in the sheet.
I am unable to stop the function from executing again and again. I have grouped the rows month wise, also created named ranges. either of the ways, can I execute the formula only in this expanded rows/named ranges using Apps script???? Attached the sheet
onEdittrigger instead of a custom function? - IamblichusDoesn't stop running? The idea behind implementing a trigger is to get rid of the custom functions and do the same actions using a trigger. What doesn't stop running in this case? - Iamblichus