Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 142
Default Static Count blank

This formula counts blank cell since the last entry in the colmn.
=IF(L3<"",COUNTBLANK(INDEX($L$2:L2,MATCH(9.999999 99999999E+307,$L$2:L2))
:L3),"")

I find myself needing to manually copy it down to get it to accept the
newest entry.

I have put the formula into a new sheet and make reference to the original
sheet.
=IF(Sheet1!L3<"",COUNTBLANK(INDEX(Sheet1!$L$2:L2, MATCH(9.99999999999999E+307,Sheet1!$L$2:L2))
:Sheet1!L3),"")

Is there a way to make this formula say, a full row reference, that will
automatically count blank cells since the last entry so I don't have to
continually update the formula?

Hope this makes since,
Thank you now, and well into the future for your graciousness,
Luke
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Static Count blank

It's not clear what you want.

I mean, it's obvious you're counting empty/blank cells but it's not clear
what range you want to use for the count. It seems you want to define an end
of range and count from the last numeric entry to the end of range but
you're formula is using a different end of range each time you copy the
formula down the column.

Need more details.

--
Biff
Microsoft Excel MVP


"Luke" wrote in message
...
This formula counts blank cell since the last entry in the colmn.
=IF(L3<"",COUNTBLANK(INDEX($L$2:L2,MATCH(9.999999 99999999E+307,$L$2:L2))
:L3),"")

I find myself needing to manually copy it down to get it to accept the
newest entry.

I have put the formula into a new sheet and make reference to the original
sheet.
=IF(Sheet1!L3<"",COUNTBLANK(INDEX(Sheet1!$L$2:L2, MATCH(9.99999999999999E+307,Sheet1!$L$2:L2))
:Sheet1!L3),"")

Is there a way to make this formula say, a full row reference, that will
automatically count blank cells since the last entry so I don't have to
continually update the formula?

Hope this makes since,
Thank you now, and well into the future for your graciousness,
Luke



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 142
Default Static Count blank

Thanks T. Valko,
Try this:
Sheet1 A:A is automatically updated with numeric information as it occurs
(by a completely different formula).
In sheet2 $A$1 I need a formula that will count blank cells since the last
entry in Sheet1 A:A WITHOUT copying/Filling the formula down in Sheet2 $A$1.

In otherwords, the formula in Sheet2 $A$1 needs to stay static/stay-put
regardless of movement in Sheet1 A:A

I hope this is more clear
Luke

"T. Valko" wrote:

It's not clear what you want.

I mean, it's obvious you're counting empty/blank cells but it's not clear
what range you want to use for the count. It seems you want to define an end
of range and count from the last numeric entry to the end of range but
you're formula is using a different end of range each time you copy the
formula down the column.

Need more details.

--
Biff
Microsoft Excel MVP


"Luke" wrote in message
...
This formula counts blank cell since the last entry in the colmn.
=IF(L3<"",COUNTBLANK(INDEX($L$2:L2,MATCH(9.999999 99999999E+307,$L$2:L2))
:L3),"")

I find myself needing to manually copy it down to get it to accept the
newest entry.

I have put the formula into a new sheet and make reference to the original
sheet.
=IF(Sheet1!L3<"",COUNTBLANK(INDEX(Sheet1!$L$2:L2, MATCH(9.99999999999999E+307,Sheet1!$L$2:L2))
:Sheet1!L3),"")

Is there a way to make this formula say, a full row reference, that will
automatically count blank cells since the last entry so I don't have to
continually update the formula?

Hope this makes since,
Thank you now, and well into the future for your graciousness,
Luke




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Static Count blank

Maybe this:

=IF(COUNT(Sheet1!A:A),COUNTBLANK(Sheet1!A1:INDEX(S heet1!A:A,MATCH(1E+100,Sheet1!A:A))),"")

--
Biff
Microsoft Excel MVP


"Luke" wrote in message
...
Thanks T. Valko,
Try this:
Sheet1 A:A is automatically updated with numeric information as it occurs
(by a completely different formula).
In sheet2 $A$1 I need a formula that will count blank cells since the last
entry in Sheet1 A:A WITHOUT copying/Filling the formula down in Sheet2
$A$1.

In otherwords, the formula in Sheet2 $A$1 needs to stay static/stay-put
regardless of movement in Sheet1 A:A

I hope this is more clear
Luke

"T. Valko" wrote:

It's not clear what you want.

I mean, it's obvious you're counting empty/blank cells but it's not clear
what range you want to use for the count. It seems you want to define an
end
of range and count from the last numeric entry to the end of range but
you're formula is using a different end of range each time you copy the
formula down the column.

Need more details.

--
Biff
Microsoft Excel MVP


"Luke" wrote in message
...
This formula counts blank cell since the last entry in the colmn.
=IF(L3<"",COUNTBLANK(INDEX($L$2:L2,MATCH(9.999999 99999999E+307,$L$2:L2))
:L3),"")

I find myself needing to manually copy it down to get it to accept the
newest entry.

I have put the formula into a new sheet and make reference to the
original
sheet.
=IF(Sheet1!L3<"",COUNTBLANK(INDEX(Sheet1!$L$2:L2, MATCH(9.99999999999999E+307,Sheet1!$L$2:L2))
:Sheet1!L3),"")

Is there a way to make this formula say, a full row reference, that
will
automatically count blank cells since the last entry so I don't have to
continually update the formula?

Hope this makes since,
Thank you now, and well into the future for your graciousness,
Luke






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 142
Default Static Count blank

T. Valko,
I thought you had it for a minute there but it is returning the MAX value of
the colmn. i.e. the blank cells equal 23 since the last entry and the formula
is returning 8113 which just happens to be the max value in the column
selection.
It took me a bit to catch on what it was returning.

any solutions? I can up load if you need.
Luke
"T. Valko" wrote:

Maybe this:

=IF(COUNT(Sheet1!A:A),COUNTBLANK(Sheet1!A1:INDEX(S heet1!A:A,MATCH(1E+100,Sheet1!A:A))),"")

--
Biff
Microsoft Excel MVP


"Luke" wrote in message
...
Thanks T. Valko,
Try this:
Sheet1 A:A is automatically updated with numeric information as it occurs
(by a completely different formula).
In sheet2 $A$1 I need a formula that will count blank cells since the last
entry in Sheet1 A:A WITHOUT copying/Filling the formula down in Sheet2
$A$1.

In otherwords, the formula in Sheet2 $A$1 needs to stay static/stay-put
regardless of movement in Sheet1 A:A

I hope this is more clear
Luke

"T. Valko" wrote:

It's not clear what you want.

I mean, it's obvious you're counting empty/blank cells but it's not clear
what range you want to use for the count. It seems you want to define an
end
of range and count from the last numeric entry to the end of range but
you're formula is using a different end of range each time you copy the
formula down the column.

Need more details.

--
Biff
Microsoft Excel MVP


"Luke" wrote in message
...
This formula counts blank cell since the last entry in the colmn.
=IF(L3<"",COUNTBLANK(INDEX($L$2:L2,MATCH(9.999999 99999999E+307,$L$2:L2))
:L3),"")

I find myself needing to manually copy it down to get it to accept the
newest entry.

I have put the formula into a new sheet and make reference to the
original
sheet.
=IF(Sheet1!L3<"",COUNTBLANK(INDEX(Sheet1!$L$2:L2, MATCH(9.99999999999999E+307,Sheet1!$L$2:L2))
:Sheet1!L3),"")

Is there a way to make this formula say, a full row reference, that
will
automatically count blank cells since the last entry so I don't have to
continually update the formula?

Hope this makes since,
Thank you now, and well into the future for your graciousness,
Luke








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Static Count blank

I can up load if you need.

OK, that'd be a good idea.

This should be relatively easy but I'm just not understanding exactly what
you want. Seeing things will help.


--
Biff
Microsoft Excel MVP


"Luke" wrote in message
...
T. Valko,
I thought you had it for a minute there but it is returning the MAX value
of
the colmn. i.e. the blank cells equal 23 since the last entry and the
formula
is returning 8113 which just happens to be the max value in the column
selection.
It took me a bit to catch on what it was returning.

any solutions? I can up load if you need.
Luke
"T. Valko" wrote:

Maybe this:

=IF(COUNT(Sheet1!A:A),COUNTBLANK(Sheet1!A1:INDEX(S heet1!A:A,MATCH(1E+100,Sheet1!A:A))),"")

--
Biff
Microsoft Excel MVP


"Luke" wrote in message
...
Thanks T. Valko,
Try this:
Sheet1 A:A is automatically updated with numeric information as it
occurs
(by a completely different formula).
In sheet2 $A$1 I need a formula that will count blank cells since the
last
entry in Sheet1 A:A WITHOUT copying/Filling the formula down in Sheet2
$A$1.

In otherwords, the formula in Sheet2 $A$1 needs to stay static/stay-put
regardless of movement in Sheet1 A:A

I hope this is more clear
Luke

"T. Valko" wrote:

It's not clear what you want.

I mean, it's obvious you're counting empty/blank cells but it's not
clear
what range you want to use for the count. It seems you want to define
an
end
of range and count from the last numeric entry to the end of range but
you're formula is using a different end of range each time you copy
the
formula down the column.

Need more details.

--
Biff
Microsoft Excel MVP


"Luke" wrote in message
...
This formula counts blank cell since the last entry in the colmn.
=IF(L3<"",COUNTBLANK(INDEX($L$2:L2,MATCH(9.999999 99999999E+307,$L$2:L2))
:L3),"")

I find myself needing to manually copy it down to get it to accept
the
newest entry.

I have put the formula into a new sheet and make reference to the
original
sheet.
=IF(Sheet1!L3<"",COUNTBLANK(INDEX(Sheet1!$L$2:L2, MATCH(9.99999999999999E+307,Sheet1!$L$2:L2))
:Sheet1!L3),"")

Is there a way to make this formula say, a full row reference, that
will
automatically count blank cells since the last entry so I don't have
to
continually update the formula?

Hope this makes since,
Thank you now, and well into the future for your graciousness,
Luke








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
Count from Blank & Non-Blank Cells Mandeep Dhami Excel Discussion (Misc queries) 4 February 12th 08 03:25 PM
count blank John in Wembley Excel Discussion (Misc queries) 3 September 7th 07 07:38 PM
Count the non blank cells vijaydsk1970 Excel Worksheet Functions 1 November 9th 06 02:25 PM
Count Non-Blank Rows Lazzaroni Excel Worksheet Functions 12 April 28th 06 07:18 PM
Count if not blank... Paul (ESI) Excel Discussion (Misc queries) 4 October 14th 05 01:48 PM


All times are GMT +1. The time now is 10:51 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"