Date Issue

Front

Board Regular
Joined
Oct 26, 2021
Messages
54
Office Version
  1. 2016
Platform
  1. Windows
I thought I had this one, but after testing there is one situation that fails. I inserted this in my conditional formatting.

=AND(Y3<$AD$36,ISBLANK(P3),Y3<>"")

AD36 will have a two digit date and then the word “Close” after it. I want the formula to return true if Y3 has a date in it that is before the date in AD36. Y3 will likely also have other words.

P3 must be empty and Y3 cannot be empty to be true.

The above formula worked fine, I thought it was good, but it failed if there is ONLY a date in Y3 whiteout other words. If Y3 has a date and words it works perfect. If its only a date it returns true even if the date in Y3 comes after AD36, which really does not make sense to me.

Can anyone advise on how to fix?
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Hi Front,

I'm not sure what a two digit date is, just the year? If so then does this work

Excel Formula:
=AND(LEFT(Y3,2)<LEFT($AD$36,2),ISBLANK(P3),Y3<>"")
 
Upvote 0
Thank you. Sorry for not being clear. by two digit date I mean without the year. So 11/6. This is the exact code that is in AD36

Excel Formula:
=(TEXT(TODAY(),"m/d")&" Close")
 
Upvote 0
It is unfortunate you use m/d format as that means November comes before April, as the 1 of 11 is lower than the 4. As it will always have a word suffix then it will always be text so you can create a date.

You say Y3 may have words suffixed but if only numbers are entered does it default to a date or does it remain text? You can click on Y3 and see if it just has a number or a date with a year.

If Y3 may be either a text field with the m/d suffix or just a date field then this should work (but always assume both dates are in the current year)
Excel Formula:
=IF(ISNUMBER(Y3),AND(Y3<(YEAR(TODAY())&"/"&LEFT(AD36,FIND(" ",AD36)-1))+0,ISBLANK(P3),Y3<>""),AND(((YEAR(TODAY())&"/"&LEFT(Y3,FIND(" ",Y3)-1))+0)<(YEAR(TODAY())&"/"&LEFT(AD36,FIND(" ",AD36)-1))+0,ISBLANK(P3),Y3<>""))
 
Upvote 0
Thank you. That did not work, but considering what you said about November coming before April, I could switch to a full date.

Excel Formula:
=(TEXT(TODAY(),"m/d/y")&" Close")

Y3 has something in it like “11/05 Close First”, but I could change to “11/05/21 Close First” if that makes a difference.
 
Upvote 0
Having the complete date in both Y3 and AAD36 makes it easier.

Try this:
Excel Formula:
=AND((LEFT(Y3&" ",FIND(" ",Y3&" ")-1)+0)<(LEFT($AD$36&" ",FIND(" ",$AD$36&" ")-1)+0),ISBLANK(P3),Y3<>"")
 
Upvote 0

Forum statistics

Threads
1,215,429
Messages
6,124,841
Members
449,193
Latest member
MikeVol

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