Excel Conditional Sum: Total Only When All Values Are Filled

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 ธ.ค. 2024

ความคิดเห็น • 4

  • @nikosmakrymanolakis3042
    @nikosmakrymanolakis3042 4 หลายเดือนก่อน +5

    a much better improvement: =IF(AND(COUNT(A1:A10)=COUNTA(A1:A10);COUNTBLANK(A1:A10)=0);SUM(A1:A10);"Fill with numbers")

    • @ExcelWithBrainBell
      @ExcelWithBrainBell  4 หลายเดือนก่อน +3

      =IF(AND(COUNT(B2:B16)=COUNTA(B2:B16),COUNTBLANK(B2:B16)=0),SUM(B2:B16),"Fill with numbers")
      Thank you for your suggestion! The formula you provided is indeed a great improvement. By using AND along with COUNT and COUNTA, it ensures that all cells contain numeric values and that none are blank. This adds an extra layer of validation, making it even more robust. I appreciate your input and will consider including it in future tutorials. Keep the ideas coming!

  • @goodman-it2qy
    @goodman-it2qy 3 หลายเดือนก่อน +1

    Thanks a lot sir.