Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default Counting (Countifs) in excel2003

Hi,

I need to count with two parameters, but I can't get it to work in excel 2003.
I'm using Excel 2007 and the CountIFS command, and that is working, but when
I want to save the file as 97-2003 it pops up with Error on the formular.

What is this formular in excel 2003 language?

=CountIfs(June!A7:A200,"JP",June!J7:J200,"*")

the * is not a wildecard but I'm sorting by using the * symbol.

Hope to hear from you soon,

Michael
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 510
Default Counting (Countifs) in excel2003

Hi

=COUNTIF(June!A7:A200,"JP",June!J7:J200)



--
Arvi Laanemets
( My real mail address: arvi.laanemets<attarkon.ee )


"Samutprakarn" wrote in message
...
Hi,

I need to count with two parameters, but I can't get it to work in excel
2003.
I'm using Excel 2007 and the CountIFS command, and that is working, but
when
I want to save the file as 97-2003 it pops up with Error on the formular.

What is this formular in excel 2003 language?

=CountIfs(June!A7:A200,"JP",June!J7:J200,"*")

the * is not a wildecard but I'm sorting by using the * symbol.

Hope to hear from you soon,

Michael



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default Counting (Countifs) in excel2003

Hi,

I just tried this one, but it doesn't work. It says there are too many
arguments in the statement.

I think I didn't make the problem clear hehe

I'm using the Countifs to find how many times "JP" and the "*" is present in
the same row of the sheet, and how in the heck do I do the same in Excel2003?

Michael

"Arvi Laanemets" wrote:

Hi

=COUNTIF(June!A7:A200,"JP",June!J7:J200)



--
Arvi Laanemets
( My real mail address: arvi.laanemets<attarkon.ee )


"Samutprakarn" wrote in message
...
Hi,

I need to count with two parameters, but I can't get it to work in excel
2003.
I'm using Excel 2007 and the CountIFS command, and that is working, but
when
I want to save the file as 97-2003 it pops up with Error on the formular.

What is this formular in excel 2003 language?

=CountIfs(June!A7:A200,"JP",June!J7:J200,"*")

the * is not a wildecard but I'm sorting by using the * symbol.

Hope to hear from you soon,

Michael




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Counting (Countifs) in excel2003

I'm using the Countifs to find how many times "JP" and
the "*" is present in the same row of the sheet
the * is not a wildecard


On the same row *but* in different cells or in the *same* cell?

By the looks of your COUNTIFS formula you want to count if the range
contains JP or "*" .

Try one of these:

To count cells with the string JP* (asterisk, not the wildcard)

=COUNTIF(A7:A15,"JP~*")

To count cells that contain either JP or * (asterisk, not the wildcard)

=COUNTIF(A7:A15,"JP")+COUNTIF(A7:A15,"~*")

Or

=SUM(COUNTIF(A7:A15,{"JP","~*"}))

Biff

"Samutprakarn" wrote in message
...
Hi,

I just tried this one, but it doesn't work. It says there are too many
arguments in the statement.

I think I didn't make the problem clear hehe

I'm using the Countifs to find how many times "JP" and the "*" is present
in
the same row of the sheet, and how in the heck do I do the same in
Excel2003?

Michael

"Arvi Laanemets" wrote:

Hi

=COUNTIF(June!A7:A200,"JP",June!J7:J200)



--
Arvi Laanemets
( My real mail address: arvi.laanemets<attarkon.ee )


"Samutprakarn" wrote in message
...
Hi,

I need to count with two parameters, but I can't get it to work in
excel
2003.
I'm using Excel 2007 and the CountIFS command, and that is working, but
when
I want to save the file as 97-2003 it pops up with Error on the
formular.

What is this formular in excel 2003 language?

=CountIfs(June!A7:A200,"JP",June!J7:J200,"*")

the * is not a wildecard but I'm sorting by using the * symbol.

Hope to hear from you soon,

Michael






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default Counting (Countifs) in excel2003

JP is in one Cell and * is in another cell :)

I want to count how many times JP and * appears in the same row (the
horizontal way) the "JP" Value is located in A and the "*" is located in J.

Sorry for my bad explanation, it's my first time with Excel :(

Michael

"T. Valko" wrote:

I'm using the Countifs to find how many times "JP" and
the "*" is present in the same row of the sheet
the * is not a wildecard


On the same row *but* in different cells or in the *same* cell?

By the looks of your COUNTIFS formula you want to count if the range
contains JP or "*" .

Try one of these:

To count cells with the string JP* (asterisk, not the wildcard)

=COUNTIF(A7:A15,"JP~*")

To count cells that contain either JP or * (asterisk, not the wildcard)

=COUNTIF(A7:A15,"JP")+COUNTIF(A7:A15,"~*")

Or

=SUM(COUNTIF(A7:A15,{"JP","~*"}))

Biff

"Samutprakarn" wrote in message
...
Hi,

I just tried this one, but it doesn't work. It says there are too many
arguments in the statement.

I think I didn't make the problem clear hehe

I'm using the Countifs to find how many times "JP" and the "*" is present
in
the same row of the sheet, and how in the heck do I do the same in
Excel2003?

Michael

"Arvi Laanemets" wrote:

Hi

=COUNTIF(June!A7:A200,"JP",June!J7:J200)



--
Arvi Laanemets
( My real mail address: arvi.laanemets<attarkon.ee )


"Samutprakarn" wrote in message
...
Hi,

I need to count with two parameters, but I can't get it to work in
excel
2003.
I'm using Excel 2007 and the CountIFS command, and that is working, but
when
I want to save the file as 97-2003 it pops up with Error on the
formular.

What is this formular in excel 2003 language?

=CountIfs(June!A7:A200,"JP",June!J7:J200,"*")

the * is not a wildecard but I'm sorting by using the * symbol.

Hope to hear from you soon,

Michael








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Counting (Countifs) in excel2003

Try this:

=SUMPRODUCT(--(A7:A15="JP"),--(J7:J15="*"))

Biff

"Samutprakarn" wrote in message
...
JP is in one Cell and * is in another cell :)

I want to count how many times JP and * appears in the same row (the
horizontal way) the "JP" Value is located in A and the "*" is located in
J.

Sorry for my bad explanation, it's my first time with Excel :(

Michael

"T. Valko" wrote:

I'm using the Countifs to find how many times "JP" and
the "*" is present in the same row of the sheet
the * is not a wildecard


On the same row *but* in different cells or in the *same* cell?

By the looks of your COUNTIFS formula you want to count if the range
contains JP or "*" .

Try one of these:

To count cells with the string JP* (asterisk, not the wildcard)

=COUNTIF(A7:A15,"JP~*")

To count cells that contain either JP or * (asterisk, not the wildcard)

=COUNTIF(A7:A15,"JP")+COUNTIF(A7:A15,"~*")

Or

=SUM(COUNTIF(A7:A15,{"JP","~*"}))

Biff

"Samutprakarn" wrote in message
...
Hi,

I just tried this one, but it doesn't work. It says there are too many
arguments in the statement.

I think I didn't make the problem clear hehe

I'm using the Countifs to find how many times "JP" and the "*" is
present
in
the same row of the sheet, and how in the heck do I do the same in
Excel2003?

Michael

"Arvi Laanemets" wrote:

Hi

=COUNTIF(June!A7:A200,"JP",June!J7:J200)



--
Arvi Laanemets
( My real mail address: arvi.laanemets<attarkon.ee )


"Samutprakarn" wrote in
message
...
Hi,

I need to count with two parameters, but I can't get it to work in
excel
2003.
I'm using Excel 2007 and the CountIFS command, and that is working,
but
when
I want to save the file as 97-2003 it pops up with Error on the
formular.

What is this formular in excel 2003 language?

=CountIfs(June!A7:A200,"JP",June!J7:J200,"*")

the * is not a wildecard but I'm sorting by using the * symbol.

Hope to hear from you soon,

Michael








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
2 COUNTIFS Joey041 Excel Discussion (Misc queries) 1 November 16th 06 08:11 AM
excel's new countifs...on 2003? AndyBrown Excel Discussion (Misc queries) 1 July 20th 06 04:20 PM
Countifs and multiple columns... ajayb Excel Worksheet Functions 1 June 9th 06 03:29 PM
Multiple countifs ozcank Excel Worksheet Functions 2 November 14th 05 10:36 AM
COUNTIFs with multiple criteria Cene K Excel Discussion (Misc queries) 5 October 28th 05 10:43 PM


All times are GMT +1. The time now is 02:43 AM.

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"