You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
I want to add the values from cell A1 to A6. However, if any values is greater 8, I must minus .5, then add them. If they not greater 8, then just add them to the total. How do I do this in an sum if statement?
www.exciter.gr: Custom Excel Applications!
unread,
Oct 28, 2007, 4:29:45 PM10/28/07
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
i dont know if this suits you, it is not sumif but it works
=SUM(A1:A6)-COUNTIF(A1:A6;">8")*0,5
First part is total sum and the second counts the values >8 and multiplies their number * 0.5. Then is part1-part2