WUGNET, the Windows User Group Network
Your Complete Resource Center for "The Best" in Shareware, Computing Tips and Support, Windows Industry News... and much more!
Home Forums Shareware Windows Tips Hot Offers FREE Newsletters Arcade Contact Us About Partners
Search WUGNET: RSS Feeds RSS Feeds Advertise with WUGNET    |    Shareware eBooks
HomeHome FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Match date to today

 
   Home -> Office -> Worksheet Functions RSS
Next:  Conditional Format Range of Cells  
Author Message
Derek M

External


Since: Apr 07, 2008
Posts: 7



(Msg. 1) Posted: Thu Nov 05, 2009 3:31 am
Post subject: Match date to today
Archived from groups: microsoft>public>excel>worksheet>functions (more info?)

Hi All

need to match dates in a column of data to todays date, i.e.

3/11/09
4/11/09
5/11/09
5/11/09

If today is 5/11/09 then the cell would return the value 2, i cant figure
out the sum Smile

Thanks for any help in advance

Derek
Back to top
Login to vote
Jacob Skaria

External


Since: Mar 15, 2009
Posts: 231



(Msg. 2) Posted: Thu Nov 05, 2009 3:34 am
Post subject: RE: Match date to today [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

If the dates in ColA are in excel date format the below would work...

=COUNTIF(A:A,TODAY())

If this post helps click Yes
---------------
Jacob Skaria


"Derek M" wrote:

> Hi All
>
> need to match dates in a column of data to todays date, i.e.
>
> 3/11/09
> 4/11/09
> 5/11/09
> 5/11/09
>
> If today is 5/11/09 then the cell would return the value 2, i cant figure
> out the sum Smile
>
> Thanks for any help in advance
>
> Derek
Back to top
Login to vote
Derek M

External


Since: Apr 07, 2008
Posts: 7



(Msg. 3) Posted: Thu Nov 05, 2009 3:39 am
Post subject: RE: Match date to today [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I think you have helped me before, and it worked again, thank you so much,
you are a genuis Smile

Derek

"Jacob Skaria" wrote:

> If the dates in ColA are in excel date format the below would work...
>
> =COUNTIF(A:A,TODAY())
>
> If this post helps click Yes
> ---------------
> Jacob Skaria
>
>
> "Derek M" wrote:
>
> > Hi All
> >
> > need to match dates in a column of data to todays date, i.e.
> >
> > 3/11/09
> > 4/11/09
> > 5/11/09
> > 5/11/09
> >
> > If today is 5/11/09 then the cell would return the value 2, i cant figure
> > out the sum Smile
> >
> > Thanks for any help in advance
> >
> > Derek
Back to top
Login to vote
Derek M

External


Since: Apr 07, 2008
Posts: 7



(Msg. 4) Posted: Thu Nov 05, 2009 3:50 am
Post subject: RE: Match date to today [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Ooh just one other thing if i may, what if i also wanted to reference another
column to filter out just one word i.e. match the date to today, but also
check another column for the word "mymail" and bring just those results back
(count mymail under todays date)

Thanks again

Derek

"Derek M" wrote:

> I think you have helped me before, and it worked again, thank you so much,
> you are a genuis Smile
>
> Derek
>
> "Jacob Skaria" wrote:
>
> > If the dates in ColA are in excel date format the below would work...
> >
> > =COUNTIF(A:A,TODAY())
> >
> > If this post helps click Yes
> > ---------------
> > Jacob Skaria
> >
> >
> > "Derek M" wrote:
> >
> > > Hi All
> > >
> > > need to match dates in a column of data to todays date, i.e.
> > >
> > > 3/11/09
> > > 4/11/09
> > > 5/11/09
> > > 5/11/09
> > >
> > > If today is 5/11/09 then the cell would return the value 2, i cant figure
> > > out the sum Smile
> > >
> > > Thanks for any help in advance
> > >
> > > Derek
Back to top
Login to vote
Jacob Skaria

External


Since: Mar 15, 2009
Posts: 231



(Msg. 5) Posted: Thu Nov 05, 2009 4:18 am
Post subject: RE: Match date to today [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

When you have multiple criteria use SUMPRODUCT()

=SUMPRODUCT((A1:A10=criteria1)*(B1:B10=criteria2))
=SUMPRODUCT((A1:A10=TODAY())*(B1:B10="mymail"))

If you are using XL2007; check out help on COUNTIFS()

If this post helps click Yes
---------------
Jacob Skaria


"Derek M" wrote:

> Ooh just one other thing if i may, what if i also wanted to reference another
> column to filter out just one word i.e. match the date to today, but also
> check another column for the word "mymail" and bring just those results back
> (count mymail under todays date)
>
> Thanks again
>
> Derek
>
> "Derek M" wrote:
>
> > I think you have helped me before, and it worked again, thank you so much,
> > you are a genuis Smile
> >
> > Derek
> >
> > "Jacob Skaria" wrote:
> >
> > > If the dates in ColA are in excel date format the below would work...
> > >
> > > =COUNTIF(A:A,TODAY())
> > >
> > > If this post helps click Yes
> > > ---------------
> > > Jacob Skaria
> > >
> > >
> > > "Derek M" wrote:
> > >
> > > > Hi All
> > > >
> > > > need to match dates in a column of data to todays date, i.e.
> > > >
> > > > 3/11/09
> > > > 4/11/09
> > > > 5/11/09
> > > > 5/11/09
> > > >
> > > > If today is 5/11/09 then the cell would return the value 2, i cant figure
> > > > out the sum Smile
> > > >
> > > > Thanks for any help in advance
> > > >
> > > > Derek
Back to top
Login to vote
Derek M

External


Since: Apr 07, 2008
Posts: 7



(Msg. 6) Posted: Thu Nov 05, 2009 4:22 am
Post subject: RE: Match date to today [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Thanks for your help again, i veru much appreciate it, i am learning all the
time too

"Derek M" wrote:

> Hi All
>
> need to match dates in a column of data to todays date, i.e.
>
> 3/11/09
> 4/11/09
> 5/11/09
> 5/11/09
>
> If today is 5/11/09 then the cell would return the value 2, i cant figure
> out the sum Smile
>
> Thanks for any help in advance
>
> Derek
Back to top
Login to vote
joel

External


Since: Nov 05, 2009
Posts: 1



(Msg. 7) Posted: Thu Nov 05, 2009 7:05 am
Post subject: Re: Match date to today [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

It would be a subtraction

=today()-A3


--
joel
------------------------------------------------------------------------
joel's Profile: http://www.thecodecage.com/forumz/member.php?userid=229
View this thread: http://www.thecodecage.com/forumz/showthread.php?t=151289

[url="http://www.thecodecage.com"]Microsoft Office Help[/url]
Back to top
Login to vote
Display posts from previous:   
       Home -> Office -> Worksheet Functions All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Categories:
 Windows XP
 Windows Vista
 Windows Other
  Office
 Office Other
 Security
  • Home |
  • Shareware |
  • Windows Tips |
  • Hot Offers |
  • FREE Newsletters |
  • Arcade |
  • Forums |
  • eBooks |
  • About WUGNET |
  • Partners |
  • Contact

  • WUGNET Privacy Policy |
  • Link to WUGNET |
  • IT Support