Hello,
Sometimes codes like
variable1.setValue(variable2.value.filter(row > {...})
works asynchronously and it creates problems. Because next line depends on it and processed without the proper value of variable1. I tried with await
keyword before the statement. Even then it also didn't work properly.
Can anyone please give me a solution so that this line works completely before going to the next line?
Thanks in advance.
Sudip