Automating Calculator Application
Hi,
I have an excel sheet that has four columns (num1, num2, operator, result - in order). I want to take the value from column "num1", then the operator and finally num2 and do the calculation on my windows calculator application. The result is to stored in the fourth column i.e. "result". The numbers could have any number of digits. Also there could be many rows. Is there any simple way to do this?
This is pretty simple. Set up a ForLoop to loop through the rows. Inside of that ForLoop, use another ForLoop with a StringUtils SubString to get each digit in num1 and use a Switch to click the correct button in Calculator. Do the same type of process for operator and num2 and then write the result back to Excel.