As the title suggests, I want to build a function that calls the other functions one after the other. Unfortunately, the functions take different lengths of time and understandably problems arise when they are executed.
Is there a simple solution to this problem?
function allInOne() {
loadData();
moveSheet();
sortStockData();
}
Before the first function is finished, the second has already been carried out. But it should all be done one after the other. I just got stuck through google etc.
Thank you in advance.