Return blank instead of 1/00/00

thanksamillion101

New Member
Joined
Jul 8, 2020
Messages
41
Office Version
  1. 2010
Hello, I have spent enough time on this WS and ready to have it completed and appreciate all help! The formula I need in (Z11) is to return "blank", instead of 1/00/00. The formula I am using will return the Max date between two ranges. Greater than 1/1/22 and less than 9/30/22 (A1)...if Max (N11:Y11) is greater than 9/30/22, then blank otherwise, Max between original range. Thank you!!

1662602551038.png
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Try:
=IF(SUM((N11:Y11<=$A$1)*(N11:Y11>=DATEVALUE("1/22/2022")))=0,"",MAX(IF((N11:Y11<=$A$1)*(N11:Y11>=DATEVALUE("1/22/2022")),N11:Y11)))
 
Upvote 0
Code:
=IF(AND(MAX(N11:Y11)<=$A$1,MAX(N11:Y11)>=DATE(YEAR($A$1),1,1)),MAX(N11:Y11),"")
 
Upvote 0
Solution

Forum statistics

Threads
1,215,025
Messages
6,122,734
Members
449,094
Latest member
dsharae57

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