Hi @AdobeWisdomWarrior ,
After each activity use a JavaScript code activity and get the count using vars.recCount . For example, after query activity use the below script to get Query's count:
vars.queryCount = vars.recCount;
And in the end of your same WKF, use Alert activity and call the query cou...