If cells are empty stop MIN MAX from returning a value.

ashbee

New Member
Joined
Sep 16, 2019
Messages
20
Hello, I'm hoping someone can help. I'm using =IF(C4<D4,MAX(0,MIN(D4,upper)-MAX(C4,lower)),MAX(0,upper-C4)+MAX(0,D4-lower)) to calculate the total hours that fall between two times however if cell C4 or D4 are blank my formula still returns a value. Could anyone advise what I can do so that blank cells result in either a zero or blank formula cell?

I use the above to report on overlapping times.
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
How about
=IF(OR(C4="",D4,""),"",IF(C4<D4,MAX(0,MIN(D4,upper)-MAX(C4,lower)),MAX(0,upper-C4)+MAX(0,D4-lower)))
 
Upvote 0
Typo, it should be
=IF(OR(C4="",D4=""),"",IF(C4<D4,MAX(0,MIN(D4,upper)-MAX(C4,lower)),MAX(0,upper-C4)+MAX(0,D4-lower)))
 
Upvote 0
Thanks Fluff - that worked beautifully and the typo helped me to understand how you've put the code together :)
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,717
Members
448,985
Latest member
chocbudda

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