Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need help to get system to get result by counting. for example based on the
'Data' below, there's a row of dates in column A and currency in Column B. In a summary page, I have these Date 6/3/08 -- The questions is, how do I fomulate the cell to count for me the number of AUS for the said date? Data **** A B ------------------ 6/3/08 AUS 6/3/08 DMK 6/3/08 DMK 6/3/08 DMK 6/3/08 DMK 6/3/08 DMK 6/3/08 DMK 6/3/08 AUS 6/3/08 DMK 6/3/08 OSM 6/3/08 OSM |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this...
Use cells to hold the criteria: D1 = 6/3/08 E1 = AUS =SUMPRODUCT(--(A1:A11=D1),--(B1:B100=E1)) -- Biff Microsoft Excel MVP "Jafferi" wrote in message ... I need help to get system to get result by counting. for example based on the 'Data' below, there's a row of dates in column A and currency in Column B. In a summary page, I have these Date 6/3/08 -- The questions is, how do I fomulate the cell to count for me the number of AUS for the said date? Data **** A B ------------------ 6/3/08 AUS 6/3/08 DMK 6/3/08 DMK 6/3/08 DMK 6/3/08 DMK 6/3/08 DMK 6/3/08 DMK 6/3/08 AUS 6/3/08 DMK 6/3/08 OSM 6/3/08 OSM |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I tried but the results I got is #NUM!. Did I do something wrong?
"T. Valko" wrote: Try this... Use cells to hold the criteria: D1 = 6/3/08 E1 = AUS =SUMPRODUCT(--(A1:A11=D1),--(B1:B100=E1)) -- Biff Microsoft Excel MVP "Jafferi" wrote in message ... I need help to get system to get result by counting. for example based on the 'Data' below, there's a row of dates in column A and currency in Column B. In a summary page, I have these Date 6/3/08 -- The questions is, how do I fomulate the cell to count for me the number of AUS for the said date? Data **** A B ------------------ 6/3/08 AUS 6/3/08 DMK 6/3/08 DMK 6/3/08 DMK 6/3/08 DMK 6/3/08 DMK 6/3/08 DMK 6/3/08 AUS 6/3/08 DMK 6/3/08 OSM 6/3/08 OSM |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I tried but the results I got is #NUM!.
Did I do something wrong? Yes, you probably did this: =SUMPRODUCT(--(A:A=D1),--(B:B=E1)) If you're not using Excel 2007 you can't use entire columns as range references. Use a smaller specific range. I see I had a typo in my previous reply: =SUMPRODUCT(--(A1:A11=D1),--(B1:B100=E1)) That should have been: =SUMPRODUCT(--(A1:A11=D1),--(B1:B11=E1)) -- Biff Microsoft Excel MVP "Jafferi" wrote in message ... I tried but the results I got is #NUM!. Did I do something wrong? "T. Valko" wrote: Try this... Use cells to hold the criteria: D1 = 6/3/08 E1 = AUS =SUMPRODUCT(--(A1:A11=D1),--(B1:B100=E1)) -- Biff Microsoft Excel MVP "Jafferi" wrote in message ... I need help to get system to get result by counting. for example based on the 'Data' below, there's a row of dates in column A and currency in Column B. In a summary page, I have these Date 6/3/08 -- The questions is, how do I fomulate the cell to count for me the number of AUS for the said date? Data **** A B ------------------ 6/3/08 AUS 6/3/08 DMK 6/3/08 DMK 6/3/08 DMK 6/3/08 DMK 6/3/08 DMK 6/3/08 DMK 6/3/08 AUS 6/3/08 DMK 6/3/08 OSM 6/3/08 OSM |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count instances of text in date entries | Excel Worksheet Functions | |||
Count text values in a date range | Excel Discussion (Misc queries) | |||
Count items when specific text and date criteria are met | Excel Worksheet Functions | |||
count the number of cells with a date <= today's date | New Users to Excel | |||
Count Intervals of Filtered TEXT values in Column and Return Count across a Row | Excel Worksheet Functions |