Excel 2010, sum individual cells rather than a range in a row using a sumif function -
with excel 2010, trying sum individual cells rather range in row using sumif function. example: formula = sumif(c2,"<>",(k2+n2+q2+t2)) not work. must range , not individual cells?
without seeing data you're working bit difficult answer question.
sumif requires single cell reference or range of cells. can try breaking formula down multiple sumif formulas:
=sum(sumif(c2,"<>",k2),sumif(c2,"<>",n2),sumif(c2,"<>",q2),sumif(c2,"<>",t2))
Comments
Post a Comment