Welcome to Tech Support Forum home to more then 136,000 problems solved. Issues have included: Spyware, Malware, Virus Issues, Windows, Microsoft, Linux, Networking, Security, Hardware, and Gaming Getting your problem solved is as easy as:
1. Registering for a free account
2. Asking your question
3. Receiving an answer

Registered members:
* Get free support
* Communicate privately with other members (PM).
* Removal of this message
* See fewer ads.
* And much more..

 



Want to know how to post a question? click here Having problems with spyware and pop-ups? First Steps
Go Back   Tech Support Forum > Microsoft Support > Microsoft Office support
User Name
Password
Site Map Register Donate Rules Blogs Mark Forums Read


Microsoft Office support MS Office support forum

Reply
 
LinkBack Thread Tools
Old 09-25-2005, 04:48 PM   #1 (permalink)
DG3
Registered User
 
Join Date: Jan 2005
Posts: 10
OS: XP


Excel Function problem

In excel, is there a way to count blank cells in a range, but count up to and stop the count when it reaches a cell with something in it. The COUNTBLANK function will count all of the blank cells in the range but does not stop the count upon reaching a non blank cell. Is there a way of doing this in excel?
Thanks,
Doug
DG3 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Important Information
Join the #1 Tech Support Forum Today - It's Totally Free!

TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free.

Join TechSupportforum.com Today - Click Here

Old 09-26-2005, 05:38 AM   #2 (permalink)
Moderator/ Rangemaster TSF Academy; Analyst, Security Team; Oor Wullie; TSF Surgeon and Resident Comic
 
Glaswegian's Avatar
 
Join Date: Sep 2005
Location: Glasgow
Posts: 25,482
OS: Win XP Pro SP3 / Win 7 Pro

My System

Blog Entries: 10
Hi Doug

I can do this with some code, if that's OK (Not so hot with formulae!). This should work - simply select the first blank cell, then run the code.
Code:
Sub CountSomeBlanks()
Dim myRng As Range

Set myRng = Range(ActiveCell, ActiveCell.End(xlDown))
MsgBox "Number of blanks cells: " & Application.WorksheetFunction.CountBlank(myRng), vbInformation, "Blank cell counter"
End Sub
Does this help?

Regards
__________________
Iain - Defender of the Haggis and all things Scottish.
I don't help by PM - post in the Forums.



PC Safety & Security::PC running a bit slow?::Donate::Photographers Corner
Glaswegian is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 09-26-2005, 11:28 PM   #3 (permalink)
DG3
Registered User
 
Join Date: Jan 2005
Posts: 10
OS: XP


Thanks for your help Iain. Is it possible to build a formula to do this?
Doug
DG3 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 09-27-2005, 01:45 AM   #4 (permalink)
TSF Enthusiast
 
Join Date: Dec 2004
Posts: 604
OS: windows xp


I have something that would work if the following conditions is ok with you

1. If you want it to stop counting at the first cell with text
2. That the first none blank is text not numeric (proberly a way to change this to numeric and not text by editing condition 1 of my formula)
3. the enitre range is in the same row

=MATCH("*",startvalue:endvalue,0)-1

Example

=MATCH("*",A3:A10,0)-1

A3 blank
A4 blank
A5 blank
A6 blank
A7 the
A8 blank

returns 4

Explanation of formula

Match find the spot in the range that meets a condition. if the range A5:A10 then A5 is spot 1 and A10 is spot 6.

condtion 1: item to find.
"*" is a trick to search for any text value
condition 2: range
condition 3: can be either -1,0,1 for what we doing with this command in this example it does not really matter.

There proberly a way to change condtion 1 to search for any numeric value instead of text but I dont know it off hand.
__________________

Last edited by mgoldb2; 09-27-2005 at 01:47 AM.
mgoldb2 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




All times are GMT -7. The time now is 11:37 PM.



Copyright 2001 - 2009, Tech Support Forum
Home Tips Plus | Outdoor Basecamp | Automotive Support Forum

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85