Hi,
I had this sumif formula:
=SUMIF(Data!C7:$C$435,"<>",Data!$CV$7:$CV$435)
but I now need it to exclude "". On a vlookup I have IFERROR return "" and thererore this is still being picked up. How can I exclude it?
Hi,
I had this sumif formula:
=SUMIF(Data!C7:$C$435,"<>",Data!$CV$7:$CV$435)
but I now need it to exclude "". On a vlookup I have IFERROR return "" and thererore this is still being picked up. How can I exclude it?
Hi.
Apart from "" strings, what type of data is in Data!C7:C435? Text? Numbers? Both?
Regards
Hi,
Its both.
I need it to sum every unless its either blank or ""
=SUMIF(Data!C7:$C$435,"<>"&"",Data!$CV$7:$CV$435)
try
Samba
Say thanks to those who have helped you by clicking Add Reputation star.
Hi,
That didnt work im affraid
or try
=SUMPRODUCT((LEN(data!C7:$C$435)>0)*(data!$CV$7:$CV$435))
Perfect! This did it, I like it! never thought of doing it that way before
or
=SUMPRODUCT((data!C7:$C$435<>"")*(data!$CV$7:$CV$435))
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks