Why u use andalso? what is difference if i use and
AndAlso is short-circuiting logic. If the first expression returns false, behind expressions are never evaluated. In most case, it’s better than And because of performance.
Is it possible to do multiple condition using Else If? so i dont need to add if acitivity one by one
Once you checked the data and if any data is missing, do you need to perform separate work around or you just to check whether the data is missing in the datatable?
If first case for each column you will have to write separate elseif (inside elseif activity)