Sumproduct Left function ignore blank cells

FryGirl

Well-known Member
Joined
Nov 11, 2008
Messages
1,364
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
How do I ignore the blank cells in this small range of five cells? I'm trying to sum the first three numbers in each cell.

=SUMPRODUCT(--(A2:A6<>""),LEFT(A2:A6,3))

Excel 2016 (Windows) 64 bit
A
2
128/76​
3
4
118/76​
5
6
130/83​
Sheet: BP
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Maybe

=SUMPRODUCT(--(A2:A6<>""),--LEFT(0&A2:A6,4))
You do not need to test whether the cell is blank or not... you took care of that by concatenating a 0 onto the front of the cell values. Yoiur formula works fine when written like this...

=SUMPRODUCT(--LEFT(0&A2:A6,4))
 
Upvote 0
Thanks Rick for the additional info. Works great.
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,897
Members
449,097
Latest member
dbomb1414

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top