Sum a Range Dependent on Non-zero Entries

R

RichUE

I'm developing a flexitime spreadsheet and I'm calculating whether I'm over
or under my contractual hours for the week. If there's a time worked for
Monday, I want to use the contractual hours for Monday only to calculate the
cumulative balance. If there's a time worked for Tuesday, I want to sum the
contractual hours for Monday & Tuesday. If there's a time worked for
Wednesday, I want to sum the contractual hours for Monday thro Wednesday, etc.

I have this rather unwieldy nested IF statement and wonder if there's a
neater way?

=IF(J38="","",IF(J39="",U38,IF(J40="",SUM(U38:U39),IF(J41="",SUM(U38:U40),IF(J42="",SUM(U38:U41),IF(J43="",SUM(U38:U42),))))))

The hours worked are in the J column and the contractual hours in the U
column. Rows 38 to 42 represent Monday thro Friday.
 
J

JLatham

See if this works for you:
=SUMIF(J38:J42,">"&"""",U38:U42)
which is pretty much same as
=SUMPRODUCT(--(J38:J42<>""),(U38:U42))

The first one should be a little faster.

They assume that after the first non-empty entry in column J that all other
cells in J will have some entry. That is, if J38 is empty, but J39 is not
empty, then J39:J42 would all have some entry in them.
 
R

RichUE

Could you explain what the ">"&"""" part means? It seems to be saying
"greater than AND empty".
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top