I don't know if the title is the most correct, if not I apologise.
I have a project with files that I have to translate, each file can vary in terms of the percentage that ALREADY HAS BEEN TRANSLATED, example:
- File1: 38%
- File2: 12%
- File3: 94%
- File4: 1%.
I would like to know what is the overall percentage of the project. I'm not very mathematically savvy, so I'm not doing much on my own, just the following:
t1 = (25 * 38) / 100
t2 = (25 * 12) / 100
t3 = (25 * 94) / 100
t4 = (25 * 1) / 100
25, according to my logic, represents the overall percentage that covers each file in the project, that was all I could do according to my little knowledge.