Jan 20 2023 06:48 AM
Greetings all!
I want to sum to cells (eg X16+Y16) but is one of them's value = zero, then it will return zero
example 1;
1 + 5 = 6
example 2;
1 + 0 = 0
View best response
Jan 20 2023 07:13 AM
@yannidakis
There are many ways.
=SUM(X16:Y16)*NOT(COUNTIFS(X16:Y16,0))
Jan 20 2023 07:30 AM