Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Jasen
 
Posts: n/a
Default Information retrieval functions

Hi,
I'm new here, and a bit of an Excel newbie and would like to learn more but
for starters I have a question about trying to retrieve and sort information
from data in a worksheet.
I work in a laboratory that tests patients for genetic abnormalities and
this information goes into a system that we can pull out the data as a text
file that will go into Excel as a new worksheet.
What I want to do is this: In one column is the type of test and in
another is the date the specimen was received. I want to find out the
number of tests done for a particular month. I know I can do autofilter and
do longwinded counts using that but is there an easier way to do this? Some
sort of function? Would setting up the worksheet that is linked to Microsoft
Access a better way to routinely pull up information??
I'll be asking the boss to send me on a course I think!!
Any help would be appreciated.
cheers
Jasen


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ragdyer
 
Posts: n/a
Default Information retrieval functions

If your test types are in Column A, and the corresponding dates are in
Column B,
AND, there is a date for every test, AND *no* date in Column B if Column A
is blank, then you could just count the dates in Column B that match a given
month and year.

Enter a date in C1, and this will count the dates in Column B that match
that month and year in Column B:

=SUMPRODUCT((TEXT(B2:B100,"m/y")=TEXT(C1,"m/y"))*(B2:B100<""))

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Jasen" wrote in message
...
Hi,
I'm new here, and a bit of an Excel newbie and would like to learn more

but
for starters I have a question about trying to retrieve and sort

information
from data in a worksheet.
I work in a laboratory that tests patients for genetic abnormalities and
this information goes into a system that we can pull out the data as a

text
file that will go into Excel as a new worksheet.
What I want to do is this: In one column is the type of test and in
another is the date the specimen was received. I want to find out the
number of tests done for a particular month. I know I can do autofilter

and
do longwinded counts using that but is there an easier way to do this?

Some
sort of function? Would setting up the worksheet that is linked to

Microsoft
Access a better way to routinely pull up information??
I'll be asking the boss to send me on a course I think!!
Any help would be appreciated.
cheers
Jasen



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Jasen
 
Posts: n/a
Default Information retrieval functions


"Ragdyer" wrote in message
...
If your test types are in Column A, and the corresponding dates are in
Column B,
AND, there is a date for every test, AND *no* date in Column B if Column A
is blank, then you could just count the dates in Column B that match a
given
month and year.

Enter a date in C1, and this will count the dates in Column B that match
that month and year in Column B:

=SUMPRODUCT((TEXT(B2:B100,"m/y")=TEXT(C1,"m/y"))*(B2:B100<""))



Thanks RD, I assume this works to retrieve the numbers on specified dates
for all tests together, but I forgot to add that I want to retrieve the
numbers for "Test A" or "Test B" (for example) not both at the same
time.....sorry. How do you adjust the formula to pull that out? Many
thanks for this.
Jasen





--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Jasen" wrote in message
...
Hi,
I'm new here, and a bit of an Excel newbie and would like to learn more

but
for starters I have a question about trying to retrieve and sort

information
from data in a worksheet.
I work in a laboratory that tests patients for genetic abnormalities and
this information goes into a system that we can pull out the data as a

text
file that will go into Excel as a new worksheet.
What I want to do is this: In one column is the type of test and in
another is the date the specimen was received. I want to find out the
number of tests done for a particular month. I know I can do autofilter

and
do longwinded counts using that but is there an easier way to do this?

Some
sort of function? Would setting up the worksheet that is linked to

Microsoft
Access a better way to routinely pull up information??
I'll be asking the boss to send me on a course I think!!
Any help would be appreciated.
cheers
Jasen





  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Richard Buttrey
 
Posts: n/a
Default Information retrieval functions

On Mon, 27 Feb 2006 09:33:40 +1000, "Jasen"
wrote:


"Ragdyer" wrote in message
...
If your test types are in Column A, and the corresponding dates are in
Column B,
AND, there is a date for every test, AND *no* date in Column B if Column A
is blank, then you could just count the dates in Column B that match a
given
month and year.

Enter a date in C1, and this will count the dates in Column B that match
that month and year in Column B:

=SUMPRODUCT((TEXT(B2:B100,"m/y")=TEXT(C1,"m/y"))*(B2:B100<""))



Thanks RD, I assume this works to retrieve the numbers on specified dates
for all tests together, but I forgot to add that I want to retrieve the
numbers for "Test A" or "Test B" (for example) not both at the same
time.....sorry. How do you adjust the formula to pull that out? Many
thanks for this.
Jasen


This is untested but enter either Test A or Test B in say D1 and
extend the formula

=SUMPRODUCT((TEXT(B2:B100,"m/y")=TEXT(C1,"m/y"))*(B2:B100<"")*(A1:A100=D1))

Hope this helps.

Rgds
Richard Buttrey
__
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ragdyer
 
Posts: n/a
Default Information retrieval functions

Enter the test type you're looking to count into C2, and try this:

=SUMPRODUCT((TEXT(B2:B100,"m/y")=TEXT(C1,"m/y"))*(A2:A100=C2))

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Jasen" wrote in message
...

"Ragdyer" wrote in message
...
If your test types are in Column A, and the corresponding dates are in
Column B,
AND, there is a date for every test, AND *no* date in Column B if Column

A
is blank, then you could just count the dates in Column B that match a
given
month and year.

Enter a date in C1, and this will count the dates in Column B that match
that month and year in Column B:

=SUMPRODUCT((TEXT(B2:B100,"m/y")=TEXT(C1,"m/y"))*(B2:B100<""))



Thanks RD, I assume this works to retrieve the numbers on specified dates
for all tests together, but I forgot to add that I want to retrieve the
numbers for "Test A" or "Test B" (for example) not both at the same
time.....sorry. How do you adjust the formula to pull that out? Many
thanks for this.
Jasen





--
HTH,

RD


--------------------------------------------------------------------------

-
Please keep all correspondence within the NewsGroup, so all may benefit

!

--------------------------------------------------------------------------

-
"Jasen" wrote in message
...
Hi,
I'm new here, and a bit of an Excel newbie and would like to learn more

but
for starters I have a question about trying to retrieve and sort

information
from data in a worksheet.
I work in a laboratory that tests patients for genetic abnormalities

and
this information goes into a system that we can pull out the data as a

text
file that will go into Excel as a new worksheet.
What I want to do is this: In one column is the type of test and in
another is the date the specimen was received. I want to find out the
number of tests done for a particular month. I know I can do

autofilter
and
do longwinded counts using that but is there an easier way to do this?

Some
sort of function? Would setting up the worksheet that is linked to

Microsoft
Access a better way to routinely pull up information??
I'll be asking the boss to send me on a course I think!!
Any help would be appreciated.
cheers
Jasen








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Jasen
 
Posts: n/a
Default Information retrieval functions


"Ragdyer" wrote in message
...
Enter the test type you're looking to count into C2, and try this:

=SUMPRODUCT((TEXT(B2:B100,"m/y")=TEXT(C1,"m/y"))*(A2:A100=C2))


Thank you, it works great! Spot on.
I will take note of the format of how you did this and apply it elsewhere.
Thanks again,
Jasen




--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Jasen" wrote in message
...

"Ragdyer" wrote in message
...
If your test types are in Column A, and the corresponding dates are in
Column B,
AND, there is a date for every test, AND *no* date in Column B if
Column

A
is blank, then you could just count the dates in Column B that match a
given
month and year.

Enter a date in C1, and this will count the dates in Column B that
match
that month and year in Column B:

=SUMPRODUCT((TEXT(B2:B100,"m/y")=TEXT(C1,"m/y"))*(B2:B100<""))



Thanks RD, I assume this works to retrieve the numbers on specified
dates
for all tests together, but I forgot to add that I want to retrieve the
numbers for "Test A" or "Test B" (for example) not both at the same
time.....sorry. How do you adjust the formula to pull that out? Many
thanks for this.
Jasen





--
HTH,

RD


--------------------------------------------------------------------------

-
Please keep all correspondence within the NewsGroup, so all may benefit

!

--------------------------------------------------------------------------

-
"Jasen" wrote in message
...
Hi,
I'm new here, and a bit of an Excel newbie and would like to learn
more
but
for starters I have a question about trying to retrieve and sort
information
from data in a worksheet.
I work in a laboratory that tests patients for genetic abnormalities

and
this information goes into a system that we can pull out the data as a
text
file that will go into Excel as a new worksheet.
What I want to do is this: In one column is the type of test and in
another is the date the specimen was received. I want to find out the
number of tests done for a particular month. I know I can do

autofilter
and
do longwinded counts using that but is there an easier way to do this?
Some
sort of function? Would setting up the worksheet that is linked to
Microsoft
Access a better way to routinely pull up information??
I'll be asking the boss to send me on a course I think!!
Any help would be appreciated.
cheers
Jasen








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
lookup functions soph Excel Worksheet Functions 1 September 2nd 05 01:47 AM
Are there functions that perform robust statistics in Excel? froot_broot Excel Worksheet Functions 0 August 30th 05 10:18 PM
Visible rows and functions that work tracy Excel Worksheet Functions 2 August 19th 05 05:25 AM
Improvements for text finding functions yarp Excel Discussion (Misc queries) 2 August 8th 05 04:01 PM
Confused about arrays and ranges in functions Llurker Excel Worksheet Functions 0 July 7th 05 05:44 AM


All times are GMT +1. The time now is 11:45 PM.

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

About Us

"It's about Microsoft Excel"