Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Junior Member
 
Posts: 5
Default COUNT IF with unconditional AND on cell dates

I have a slight problem here any input would be appreciated.

Trying to gather a data that has 2 conditions where both of them have to be true.
1st condition Name
2nd conditionam Date

Here is the code of what I haves so far.
=COUNT(IF(Requests!H:H,"<="&DATE(2012,4,31),IF(Req uests!D:D,"Marcus Comins")))

Ironically enough trying to set this up in VBA however need to get the formula to fucntion in the first place.

Thanks in advance

Aram
  #2   Report Post  
Junior Member
 
Posts: 5
Default

Temporary fix which is better than anything else.

=COUNT(IF(H:H=T36, IF(H:H<=T37, COUNTIF(D:D, "Name"))))

Only disadvantage here is that the dates were defined in different columns,
hence the reference to T36 and T37.

For programmers this could be a real hassle especially if youre trying to define every single date parameter.
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 587
Default COUNT IF with unconditional AND on cell dates

hi Aram,

=SUMPRODUCT(--(Requests!H1:H65535,"<="&DATE(2012,4,31))*(Request s!D1:D65535="Marcus Comins"))


--
isabelle



Le 2012-04-13 11:00, Aramazd a écrit :
I have a slight problem here any input would be appreciated.

Trying to gather a data that has 2 conditions where both of them have to
be true.
1st condition Name
2nd conditionam Date

Here is the code of what I haves so far.
=COUNT(IF(Requests!H:H,"<="&DATE(2012,4,31),IF(Req uests!D:D,"Marcus
Comins")))

Ironically enough trying to set this up in VBA however need to get the
formula to fucntion in the first place.

Thanks in advance

Aram




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 587
Default COUNT IF with unconditional AND on cell dates

sorry,

=SUMPRODUCT(--(Requests!H1:H65535<=&DATE(2012,4,31))*(Requests!D 1:D65535="Marcus Comins"))

--
isabelle


Le 2012-04-13 16:37, isabelle a écrit :
=SUMPRODUCT(--(Requests!H1:H65535,"<="&DATE(2012,4,31))*(Request s!D1:D65535="Marcus Comins"))

  #5   Report Post  
Junior Member
 
Posts: 5
Default

Works, Thanks a lot!!

The challenge now would be actually implementing this code in VBA :D


  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 587
Default COUNT IF with unconditional AND on cell dates

hi,

ActiveCell.Formula = "=SUMPRODUCT(--(Requests!H1:H65535<=DATE(2012,4,31))*(Requests!D1 :D65535=""Marcus Comins""))"

or

Dim dt As Long, rng1 As Range, rng2 As Range
dt = DateSerial(2012, 4, 30)
Set rng1 = Range("H1:H65535")
Set rng2 = Range("D1:D65535")
ActiveCell = Evaluate("SUMPRODUCT((Requests!" & rng1.Address & "<=" & dt & ")*(Requests!" & rng2.Address & "=""Marcus Comins""))")


--
isabelle



Le 2012-04-16 05:18, Aramazd a écrit :
Works, Thanks a lot!!

The challenge now would be actually implementing this code in VBA :D




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 count a cell range that include all dates prior to today? Bill T Excel Discussion (Misc queries) 3 August 19th 09 05:40 PM
Count Dates between Dates exclude Text Ken Excel Discussion (Misc queries) 3 April 8th 09 07:59 PM
Making a Conditional Formula UNConditional RJB Excel Discussion (Misc queries) 1 September 13th 08 05:07 PM
Unconditional formatting BenJancewicz Excel Discussion (Misc queries) 0 February 21st 06 03:14 PM
need to convert list of dates to count no. of dates by week neowok Excel Worksheet Functions 13 January 30th 06 03:54 PM


All times are GMT +1. The time now is 09:35 AM.

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

About Us

"It's about Microsoft Excel"