Currently in my excel spreadsheet i have this formula in one of my cell
=SUMPRODUCT(('CDT DWGS-2014'!G:G=2014)*
('CDT DWGS-2014'!S:S<>"")*
('CDT DWGS-2014'!Q:Q>='CDT DWGS-2014'!S:S)*
('CDT DWGS-2014'!S:S>=DATEVALUE("01-Jan-2014"))*
('CDT DWGS-2014'!S:S<DATEVALUE("01-Feb-2014"))
)
i want to add this next line of code into the previous code but it keeps giving me a #value error.
*('CDT DWGS-2014'!T:T>1)*
is it because in the column T, i have both numbers and text in there? How would i go about getting the sum product value without changing the column T? I need both number and text in the column. In each cell in column T, it's either "Jon Not Finished" or negative or positive numbers
Thank you
T
has any errors, e.g. using this formula:=SUMPRODUCT(1*(ISERROR('CDT DWGS-2014'!T:T)))
? what it returns? – Dmitry Pavliv#VALUE
- and this is the reason of error of your formula – Dmitry Pavliv