Thread: Condition
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Ken Johnson Ken Johnson is offline
external usenet poster
 
Posts: 1,073
Default Condition

On Jul 23, 9:16 am, Erlang wrote:
I have a column A with dates. If the date on that column is less than
08/01/2008, on column B I want it to state "N". How do I accomplish
this?


=IF(ISNUMBER(A1),IF(A1<DATE(2008,1,8),"N",""),"") for 8th Jan 2008
=IF(ISNUMBER(A1),IF(A1<DATE(2008,8,1),"N",""),"") for 1st Aug 2008

Ken Johnson