countif function hassle

  • Thread starter Thread starter dond
  • Start date Start date
D

dond

Im working on two sheets
On sheet 1, I wish cell e37 to enter the number of times a date is
placed in the column h34:h44. (These dates will be randomly entered
manually later)

The dates will fall on or between the current day "today()" and a date
enntered in sheet 2, cell N2

Every syntax I try falls over and I keep getting zero values in E37.
Its got to be easy but it escapes me. Any help out there?
 
Dond,

Try this

=COUNTIF(H34:H44,"<="&Sheet2!N2)-COUNTIF(H34:H44,"<"&TODAY())
 
dond,

Sounds like your problem might be that you're counting an exact day when
your date list might have decimal places which aren't showing. That is,
you're trying to count "August 1, 2005" when your list includes "August 1,
2005 10:03AM", so they aren't counted.

Eric
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Help to create a macro 2
Excel Dragging countif formula with changing criteria 3
Excel Is this possible?? 3
Matching data 3
Countifs and date comparison 3
COUNTIF Cells in Range? 4
LOOKUP function between two dates in Excel 2007 6
Excel Import Comments 3

Back
Top