Forum Discussion
leochan2003
Oct 07, 2020Copper Contributor
How to write a formula to sum cells with certain criteria?
Dear all, I would like to sum cells that are not blank to fulfill the following criteria: 1. when the sum range is blank, then blank 2. when the sum range equals to zero, then 0 Your help w...
- Oct 07, 2020
If you want to sum the range say A2:A10, you may try something like this...
=IF(COUNTA(A2:A10)=0,"",SUM(A2:A10))
Subodh_Tiwari_sktneer
Oct 07, 2020Silver Contributor
If you want to sum the range say A2:A10, you may try something like this...
=IF(COUNTA(A2:A10)=0,"",SUM(A2:A10))
- leochan2003Oct 07, 2020Copper Contributor
Thank you so much.
Subodh_Tiwari_sktneer- Subodh_Tiwari_sktneerOct 08, 2020Silver Contributor
You're welcome leochan2003!