View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Dewey Dewey is offline
external usenet poster
 
Posts: 16
Default Date issue with if Statement

Hey,

Yeah the DateValue modifier fixed my problem.

Cheers for that

Dewey


Bob Phillips wrote:

Filter_Date = DateValue("27/08/2006")

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"cyberwarrior" wrote in message
oups.com...
Hello Dwight, try using the DATEDIF function as I believe you cannot
compare dates without it.

Dewey wrote:
Hi,

I have a problem that I just can't figure out.

I have a data list and I only want to pick out entries which fall on a
specific date or before that but for some reason its not picking up the
entries. It works if I use an = operand but not for <= operand inorder
to get the previous dates aswell.

syntax

Filter_Date = "27/08/2006"
Data_Date = 'Value taken from workbook

if Data_Date <= Filter_Date then
code
endif

Can anyone shed any light on this??

Thanks

Dwight