Dates greater than won't work

mljohn

Board Regular
Joined
Aug 26, 2004
Messages
196
Office Version
  1. 365
Platform
  1. Windows
I have a report that I have exported as an Excel file (.xlsx) from Insightly.

I am trying to see if the date exported (Col C) is less than or greater than the current date =Today() in (E1). I am using the formula =if(exporteddate(D2)<currentdate($E$1),"less","greater") =if(D2<$E$1,"less","Greater")

The exported date in one cell is 08/12/2019 and the current date is 8/29/2019. That is exactly how they read.
The formula gives me the result of "greater" no matter if the exported date is less than or greater than the current date.

I've tried copy and special paste with values and number formats and that did not work.
I've tried changing the format of the column to date to general to text and still nothing.

What am I missing? How do I fix this?

Thanks
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Hey,

How about:
=IF(C1="","",IF(C1<$E$1,"Less",IF(C1=$E$1,"Equal","Greater")))
 
Upvote 0
Found the solution.
=IF(DATEVALUE(D15)<$E$1,"less","greater")
 
Upvote 0

Forum statistics

Threads
1,221,625
Messages
6,160,908
Members
451,677
Latest member
michellehoddinott

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