Microsoft
Software
Hardware
Network
Question : How do I sum a range of data containing Excel errors?
I have a column of data in Excel, some cells in the range contain #N/A errors. Despite this, I want to sum that whole range at the bottom of the column. I need some kind of conditional formula that can sum that data while excluding or ignoring those cells that contain errors. I tried an array formula using IF and SUM but I'm stumped.
Answer : How do I sum a range of data containing Excel errors?
The array formula below sums numbers and numbers stored as text in a row or column of cells while ignoring errors, text, and boolean values.
=SUM(IF(ISERROR(VALUE(A1:A
100)),0,A1
:A100*1))
To enter an array formula, press CTRL+SHIFT+ENTER.
Kevin
Random Solutions
What would be the ideal budget server configuration for 25 exchange users in one office?
Strip CRLF from txt file using existing query
SetItem in CListCtrl failing to set text
Passing Paremeters to AddHandler Method in VB.NET
C# Replace Statement
Strange recycling of ASP.NET worker process without hitting any pre-defined limits!
How do I check for a duplicate record?
Error attempting to set conditional formatting in Excel via VB.NET
How many servers would I need for 100 concurrent users for terminal services?
Need to convert bytes to image in web page ASP.Net C#