I want to sum data in a column. Simple =SUM(AB1:B500)
Now I have a macro that hides rows based on user imput in another
column. If they were filtered, I'd use =Subtotal(9,B1:B500) but it's
a macro that simply hides the row and Subtotal sums even the hidden
row.
Is there another equation I can use to count column B if
Column A = blank, or any letter, but NOT any number between 1 and
10000.
I thought about making another column (C) with
=IF(AND(A4>1,A4<10000),B4,"") then summing (C) and subtracting this
number from =SUM(B4:B500) but is there another eligant way?
I have also thought of =Sumif() but that doesn't work if the
criteria is another column, just a value.