Forum Discussion
No funciona una fórmula
- May 27, 2021
Thank you! The problem is caused by the formulas in columns E:F, I:K and M:O.
For example in E7:
=SI.ERROR(SI(D7="MB";"10";SI(D7="B";"7,5";SI(D7="R";"5";SI(D7="M";"2,5";" "))));"")
The return values "10", "7,5" etc. are text because of the " ", not numbers! PROMEDIO ignores text values. It should be
=SI.ERROR(SI(D7="MB";10;SI(D7="B";7,5;SI(D7="R";5;SI(D7="M";2,5;""))));"")
See the attached version.
Thank you! The problem is caused by the formulas in columns E:F, I:K and M:O.
For example in E7:
=SI.ERROR(SI(D7="MB";"10";SI(D7="B";"7,5";SI(D7="R";"5";SI(D7="M";"2,5";" "))));"")
The return values "10", "7,5" etc. are text because of the " ", not numbers! PROMEDIO ignores text values. It should be
=SI.ERROR(SI(D7="MB";10;SI(D7="B";7,5;SI(D7="R";5;SI(D7="M";2,5;""))));"")
See the attached version.
- MAIFG3May 27, 2021Copper ContributorMuchas gracias. Llevaba tiempo intentando solucionar este problema y no encontraba la solución. Muy agradecido.