I am currently doing a project where all computations are done in excel i have multiple references and if conditions, the output of all of this is a number. The input is computed in python, it carries the information to the excel which has all the formulas to compute the output.
I am trying to use the openpyxl library to get this value into my python programm, the written input works well but the last computed number that needs to be extracted as the result or output of the excel is not being done correctly. The output gives the operation not the result of the operation. I have tries using the data_only=True but does not work and the xlwings library solution dies not work either.
I just need a command that once I introduce the input, executes all excel operations so that I can extract the result onto my python programm. ¿how can i do this?