#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
PAL PAL is offline
external usenet poster
 
Posts: 200
Default IF and dates

I have a multi row, multi column spreadsheet. Column E has a blank or a date
in each row. I am trying to write a formula that says IF there is a date AND
E2+5....

Using the greater than sign doesn't work because it must be looking for a
number. Pleas advise.


=IF((AND(E2"",E2+5<$R$1)),"Yes","")
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,358
Default IF and dates

You are right, it is looking for a number, as all dates are numbers, so why
don't you use E20 instead of E2""?
--
John C


"PAL" wrote:

I have a multi row, multi column spreadsheet. Column E has a blank or a date
in each row. I am trying to write a formula that says IF there is a date AND
E2+5....

Using the greater than sign doesn't work because it must be looking for a
number. Pleas advise.


=IF((AND(E2"",E2+5<$R$1)),"Yes","")

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
PAL PAL is offline
external usenet poster
 
Posts: 200
Default IF and dates

I tried this, but a blank is not a "0"

"John C" wrote:

You are right, it is looking for a number, as all dates are numbers, so why
don't you use E20 instead of E2""?
--
John C


"PAL" wrote:

I have a multi row, multi column spreadsheet. Column E has a blank or a date
in each row. I am trying to write a formula that says IF there is a date AND
E2+5....

Using the greater than sign doesn't work because it must be looking for a
number. Pleas advise.


=IF((AND(E2"",E2+5<$R$1)),"Yes","")

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,311
Default IF and dates

So what exactly is a "Blank"? Do you mean that the cell is empty...or is
there a space or some other non-visible character?

Regards,
Paul

--

"PAL" wrote in message
...
I tried this, but a blank is not a "0"

"John C" wrote:

You are right, it is looking for a number, as all dates are numbers, so
why
don't you use E20 instead of E2""?
--
John C


"PAL" wrote:

I have a multi row, multi column spreadsheet. Column E has a blank or
a date
in each row. I am trying to write a formula that says IF there is a
date AND
E2+5....

Using the greater than sign doesn't work because it must be looking for
a
number. Pleas advise.


=IF((AND(E2"",E2+5<$R$1)),"Yes","")



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default IF and dates

A blank is treated as 0 by Excel in formulae like this - perhaps you
don't have a completely empty cell, but maybe it contains one or more
spaces (or even character 160), so it might look blank to you.

Hope this helps.

Pete

On Jul 11, 4:48*pm, PAL wrote:
I tried this, but a blank is not a "0"



"John C" wrote:
You are right, it is looking for a number, as all dates are numbers, so why
don't you use E20 instead of E2""?
--
John C


"PAL" wrote:


I have a multi row, multi column spreadsheet. *Column E has a blank or a date
in each row. *I am trying to write a formula that says IF there is a date AND
E2+5....


Using the greater than sign doesn't work because it must be looking for a
number. *Pleas advise.


=IF((AND(E2"",E2+5<$R$1)),"Yes","")- Hide quoted text -


- Show quoted text -




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,311
Default IF and dates

Maybe this:

=IF((AND(E2<"",E2+5<$R$1)),"Yes","")

or

=IF((AND(E20,E2+5<$R$1)),"Yes","")

HTH,
Paul

--

"PAL" wrote in message
...
I have a multi row, multi column spreadsheet. Column E has a blank or a
date
in each row. I am trying to write a formula that says IF there is a date
AND
E2+5....

Using the greater than sign doesn't work because it must be looking for a
number. Pleas advise.


=IF((AND(E2"",E2+5<$R$1)),"Yes","")



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
PAL PAL is offline
external usenet poster
 
Posts: 200
Default IF and dates

Just got it like this,

=IF(E2="","",IF(AND(E20,E2+5<$R$1),"Yes",""))

Thanks.

"PCLIVE" wrote:

Maybe this:

=IF((AND(E2<"",E2+5<$R$1)),"Yes","")

or

=IF((AND(E20,E2+5<$R$1)),"Yes","")

HTH,
Paul

--

"PAL" wrote in message
...
I have a multi row, multi column spreadsheet. Column E has a blank or a
date
in each row. I am trying to write a formula that says IF there is a date
AND
E2+5....

Using the greater than sign doesn't work because it must be looking for a
number. Pleas advise.


=IF((AND(E2"",E2+5<$R$1)),"Yes","")




  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,311
Default IF and dates

That seems to be a bit overkill. If the cell will either be blank or a
date, then you should just be able to check for the blank condition.

=IF(AND(E2<"",E2+5<$R$1),"Yes","")

Regards,
Paul

--

"PAL" wrote in message
...
Just got it like this,

=IF(E2="","",IF(AND(E20,E2+5<$R$1),"Yes",""))

Thanks.

"PCLIVE" wrote:

Maybe this:

=IF((AND(E2<"",E2+5<$R$1)),"Yes","")

or

=IF((AND(E20,E2+5<$R$1)),"Yes","")

HTH,
Paul

--

"PAL" wrote in message
...
I have a multi row, multi column spreadsheet. Column E has a blank or a
date
in each row. I am trying to write a formula that says IF there is a
date
AND
E2+5....

Using the greater than sign doesn't work because it must be looking for
a
number. Pleas advise.


=IF((AND(E2"",E2+5<$R$1)),"Yes","")






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how do I sort a column of random dates into Consecutive dates Rob Gibson Excel Worksheet Functions 2 June 12th 07 05:10 AM
Identifying unique dates in a range of cells containing dates... cdavidson Excel Discussion (Misc queries) 4 October 13th 06 03:30 PM
Identifying unique dates within a range of cells containing dates cdavidson Excel Discussion (Misc queries) 0 October 12th 06 08:19 PM
Calculating number of days between two dates that fall between two other dates [email protected] Excel Discussion (Misc queries) 5 October 26th 05 06:18 PM
Charting data against dates where dates are not at fixed intervals PK Charts and Charting in Excel 4 June 16th 05 05:08 AM


All times are GMT +1. The time now is 12:13 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"