Forum Discussion
a7024782
Sep 09, 2022Brass Contributor
Redondear promedios negativos
Tengo los siguientes registros en el rango A1:A6 0,50% -0,07% 2,20% -0,31% -0,13% 0,30% Quiero obtener el promedio de los valores menores a 0 (-0.07%,0.31%,0.13%) que seria ...
- Sep 09, 2022
=PROMEDIO(SI(A1:A6<0;A1:A6))=AVERAGE(IF(A1:A6<0,A1:A6))Enter the formula with ctrl+shift+enter if you don't work with Office365 or 2021.
OliverScheurich
Sep 09, 2022Gold Contributor
=PROMEDIO(SI(A1:A6<0;A1:A6))=AVERAGE(IF(A1:A6<0,A1:A6))Enter the formula with ctrl+shift+enter if you don't work with Office365 or 2021.
a7024782
Sep 09, 2022Brass Contributor
Gracias. Ha funcionado muy bien