#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 468
Default COUNT

Hi, i want to count rows, but only when i write something.
In column A i want the number to appear when i write something in column B

ex

A B
1 nrt crt product
2 1 something
3 2 something
4 nothing



When i write something in B2, i need number 1 to apeear in A2, and start
counting in A3, A4,...etc, but only when i write something in the next cell

If i delete B3 or another filled cell in column B, the count to dissapear.
Can it be done?

THANK YOU IN ADVANCE.



  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,646
Default COUNT

Maybe
=IF(ISBLANK(B2),"",ROW()-1)

in A2 (although this is not a real counting, it's only showing the row
number of filled cells in column B).

Regards,
Stefi

€˛puiuluipui€¯ ezt Ć*rta:

Hi, i want to count rows, but only when i write something.
In column A i want the number to appear when i write something in column B

ex

A B
1 nrt crt product
2 1 something
3 2 something
4 nothing



When i write something in B2, i need number 1 to apeear in A2, and start
counting in A3, A4,...etc, but only when i write something in the next cell

If i delete B3 or another filled cell in column B, the count to dissapear.
Can it be done?

THANK YOU IN ADVANCE.



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 468
Default COUNT

YOU ARE GREAT.
IT WORKS!
THANKS.

"Stefi" a scris:

Maybe
=IF(ISBLANK(B2),"",ROW()-1)

in A2 (although this is not a real counting, it's only showing the row
number of filled cells in column B).

Regards,
Stefi

€˛puiuluipui€¯ ezt Ć*rta:

Hi, i want to count rows, but only when i write something.
In column A i want the number to appear when i write something in column B

ex

A B
1 nrt crt product
2 1 something
3 2 something
4 nothing



When i write something in B2, i need number 1 to apeear in A2, and start
counting in A3, A4,...etc, but only when i write something in the next cell

If i delete B3 or another filled cell in column B, the count to dissapear.
Can it be done?

THANK YOU IN ADVANCE.



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,646
Default COUNT

You are welcome! Thanks for the feedback!
Stefi

€˛puiuluipui€¯ ezt Ć*rta:

YOU ARE GREAT.
IT WORKS!
THANKS.

"Stefi" a scris:

Maybe
=IF(ISBLANK(B2),"",ROW()-1)

in A2 (although this is not a real counting, it's only showing the row
number of filled cells in column B).

Regards,
Stefi

€˛puiuluipui€¯ ezt Ć*rta:

Hi, i want to count rows, but only when i write something.
In column A i want the number to appear when i write something in column B

ex

A B
1 nrt crt product
2 1 something
3 2 something
4 nothing



When i write something in B2, i need number 1 to apeear in A2, and start
counting in A3, A4,...etc, but only when i write something in the next cell

If i delete B3 or another filled cell in column B, the count to dissapear.
Can it be done?

THANK YOU IN ADVANCE.



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 468
Default COUNT

Stefi, i know this is another question, but, can i make something like google
search? When i write something, the cell to give me a hint? Not really a drop
down list, something more like google search bar. i don't know how to explain
better. I'm sure you understand.

THANKS ALLOT FOR EVERYTHING!

"Stefi" a scris:

You are welcome! Thanks for the feedback!
Stefi

€˛puiuluipui€¯ ezt Ć*rta:

YOU ARE GREAT.
IT WORKS!
THANKS.

"Stefi" a scris:

Maybe
=IF(ISBLANK(B2),"",ROW()-1)

in A2 (although this is not a real counting, it's only showing the row
number of filled cells in column B).

Regards,
Stefi

€˛puiuluipui€¯ ezt Ć*rta:

Hi, i want to count rows, but only when i write something.
In column A i want the number to appear when i write something in column B

ex

A B
1 nrt crt product
2 1 something
3 2 something
4 nothing



When i write something in B2, i need number 1 to apeear in A2, and start
counting in A3, A4,...etc, but only when i write something in the next cell

If i delete B3 or another filled cell in column B, the count to dissapear.
Can it be done?

THANK YOU IN ADVANCE.





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 747
Default COUNT

try this

=IF(B2="","",COUNTA($B$2:B2)) and drag it down

On Nov 4, 4:56*pm, puiuluipui
wrote:
Hi, i want to count rows, but only when i write something.
In column A i want the number to appear when i write something in column B

ex

* * * * * * *A * * * * * * * * * * * * * B
1 * * * *nrt crt * * * * * * * * product
2 * * * * *1 * * * * * * * * * * * * something
3 * * * * *2 * * * * * * * * * * * something
4 * * * * * * * * * * * * * * * * * *nothing

When i write something in B2, i need number 1 to apeear in A2, and start
counting in A3, A4,...etc, but only when i write something in the next cell

If i delete B3 or another filled cell in column B, the count to dissapear..
Can it be done?

THANK YOU IN ADVANCE.


  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 468
Default COUNT

THANKS MUDDAN. IT WORKS.
THANKS!

"muddan madhu" a scris:

try this

=IF(B2="","",COUNTA($B$2:B2)) and drag it down

On Nov 4, 4:56 pm, puiuluipui
wrote:
Hi, i want to count rows, but only when i write something.
In column A i want the number to appear when i write something in column B

ex

A B
1 nrt crt product
2 1 something
3 2 something
4 nothing

When i write something in B2, i need number 1 to apeear in A2, and start
counting in A3, A4,...etc, but only when i write something in the next cell

If i delete B3 or another filled cell in column B, the count to dissapear..
Can it be done?

THANK YOU IN ADVANCE.



  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 468
Default COUNT

Or something like a shotcut.
Database:
Central European 265
Central European 75
Central European 365

I have to write Central European.
So, i type Cen Eur, and the hint to show me all the words that begins with
Cen Eur.


Can it be done?
Thanks!

"puiuluipui" a scris:

Stefi, i know this is another question, but, can i make something like google
search? When i write something, the cell to give me a hint? Not really a drop
down list, something more like google search bar. i don't know how to explain
better. I'm sure you understand.

THANKS ALLOT FOR EVERYTHING!

"Stefi" a scris:

You are welcome! Thanks for the feedback!
Stefi

€˛puiuluipui€¯ ezt Ć*rta:

YOU ARE GREAT.
IT WORKS!
THANKS.

"Stefi" a scris:

Maybe
=IF(ISBLANK(B2),"",ROW()-1)

in A2 (although this is not a real counting, it's only showing the row
number of filled cells in column B).

Regards,
Stefi

€˛puiuluipui€¯ ezt Ć*rta:

Hi, i want to count rows, but only when i write something.
In column A i want the number to appear when i write something in column B

ex

A B
1 nrt crt product
2 1 something
3 2 something
4 nothing



When i write something in B2, i need number 1 to apeear in A2, and start
counting in A3, A4,...etc, but only when i write something in the next cell

If i delete B3 or another filled cell in column B, the count to dissapear.
Can it be done?

THANK YOU IN ADVANCE.



  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,646
Default COUNT

Sorry, I don't know such a facility!
Stefi


€˛puiuluipui€¯ ezt Ć*rta:

Or something like a shotcut.
Database:
Central European 265
Central European 75
Central European 365

I have to write Central European.
So, i type Cen Eur, and the hint to show me all the words that begins with
Cen Eur.


Can it be done?
Thanks!

"puiuluipui" a scris:

Stefi, i know this is another question, but, can i make something like google
search? When i write something, the cell to give me a hint? Not really a drop
down list, something more like google search bar. i don't know how to explain
better. I'm sure you understand.

THANKS ALLOT FOR EVERYTHING!

"Stefi" a scris:

You are welcome! Thanks for the feedback!
Stefi

€˛puiuluipui€¯ ezt Ć*rta:

YOU ARE GREAT.
IT WORKS!
THANKS.

"Stefi" a scris:

Maybe
=IF(ISBLANK(B2),"",ROW()-1)

in A2 (although this is not a real counting, it's only showing the row
number of filled cells in column B).

Regards,
Stefi

€˛puiuluipui€¯ ezt Ć*rta:

Hi, i want to count rows, but only when i write something.
In column A i want the number to appear when i write something in column B

ex

A B
1 nrt crt product
2 1 something
3 2 something
4 nothing



When i write something in B2, i need number 1 to apeear in A2, and start
counting in A3, A4,...etc, but only when i write something in the next cell

If i delete B3 or another filled cell in column B, the count to dissapear.
Can it be done?

THANK YOU IN ADVANCE.



  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 468
Default COUNT


Thanks anyway.
Thanks for everything!

"Stefi" a scris:

Sorry, I don't know such a facility!
Stefi


€˛puiuluipui€¯ ezt Ć*rta:

Or something like a shotcut.
Database:
Central European 265
Central European 75
Central European 365

I have to write Central European.
So, i type Cen Eur, and the hint to show me all the words that begins with
Cen Eur.


Can it be done?
Thanks!

"puiuluipui" a scris:

Stefi, i know this is another question, but, can i make something like google
search? When i write something, the cell to give me a hint? Not really a drop
down list, something more like google search bar. i don't know how to explain
better. I'm sure you understand.

THANKS ALLOT FOR EVERYTHING!

"Stefi" a scris:

You are welcome! Thanks for the feedback!
Stefi

€˛puiuluipui€¯ ezt Ć*rta:

YOU ARE GREAT.
IT WORKS!
THANKS.

"Stefi" a scris:

Maybe
=IF(ISBLANK(B2),"",ROW()-1)

in A2 (although this is not a real counting, it's only showing the row
number of filled cells in column B).

Regards,
Stefi

€˛puiuluipui€¯ ezt Ć*rta:

Hi, i want to count rows, but only when i write something.
In column A i want the number to appear when i write something in column B

ex

A B
1 nrt crt product
2 1 something
3 2 something
4 nothing



When i write something in B2, i need number 1 to apeear in A2, and start
counting in A3, A4,...etc, but only when i write something in the next cell

If i delete B3 or another filled cell in column B, the count to dissapear.
Can it be done?

THANK YOU IN ADVANCE.



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
Multiple Criteria, Count If, Sum Product to get count across range Jonathan Excel Worksheet Functions 5 January 9th 08 11:32 PM
Count Employee Work Time - Don't Double-count Overlapping Apts. J Excel Worksheet Functions 0 April 27th 07 05:52 AM
Excel 2000, count, sort a list & count totals? sunslight Excel Worksheet Functions 1 April 9th 07 05:46 PM
Count Intervals of 2 Consecutive Values in same Row and Return Count across Row Sam via OfficeKB.com Excel Worksheet Functions 6 November 29th 05 03:27 PM
Count Intervals of Filtered TEXT values in Column and Return Count across a Row Sam via OfficeKB.com Excel Worksheet Functions 9 July 31st 05 03:37 AM


All times are GMT +1. The time now is 03:17 PM.

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

About Us

"It's about Microsoft Excel"