use more than 30 arguments in sum function in excel
问题 I want to use more than 30 arguments in sum formula for excel, I am using below formula:- =SUM(IF(AND(ISNUMBER($F$73),ISNUMBER($J$73)),PRODUCT($F$73,$J$73/100),0),IF(AND(ISNUMBER($G$74),ISNUMBER($J$74)),PRODUCT($G$74,$J$74),0)) Above formula will work fine for 30 argumnets, but for more than 30 argumemts excel will return error( #VALUE ) 回答1: You could batch smaller groups into sub-SUMs like this: =SUM(SUM(1,2), SUM(3,4),...) . 回答2: This version will be shorter, you can add as many as you