I have this excel file
employee Salary | Month | Sum |
---|---|---|
10000 | 5 | 50000 |
20000 | 7 | 14000 |
So now in the sum column, there is a formula =A2*B2
, for all the rows in the table.
Now, how to read these formulas in python from my excel sheet and make them dynamic so if I want to change the formula to =A2+B2
for all the rows,in future I can do it easily.