#1   Report Post  
Posted to microsoft.public.excel.programming
JPA JPA is offline
external usenet poster
 
Posts: 5
Default Counters


Have created a user form in Excel with several drop down combo boxes and a
command button which writes the choices ("Y" or "N") from the combo boxes to
a worksheet.

I would like to put a counter on the form showing the user how many entries
have been written to the worksheet. The theory for this is simple enuff -
simply count the number of rows of data on the worksheet and display it on
the form - but I haven't been able to figure this out!

Help!

JPA.

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default Counters

There are a few ways to do this. The simplest would be to have a variable
(type Long or Integer) within the form and then increment that variable
every time the user clicks the CommandButton. If the range on the worksheet
that has the list of choices is entirely surrounded by blank cells, you
could use the CurrentRegion.Cells.Count to return the number of cells that
have values.

Dim Counter As Long
Counter = ActiveSheet.Range("H6").CurrentRegion.Cells.Count


--
Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)




"JPA" wrote in message
...

Have created a user form in Excel with several drop down combo boxes and a
command button which writes the choices ("Y" or "N") from the combo boxes
to
a worksheet.

I would like to put a counter on the form showing the user how many
entries
have been written to the worksheet. The theory for this is simple
enuff -
simply count the number of rows of data on the worksheet and display it on
the form - but I haven't been able to figure this out!

Help!

JPA.


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
Need help with Counters Vic Excel Discussion (Misc queries) 5 April 5th 10 06:38 PM
Counters halem2[_78_] Excel Programming 3 June 30th 06 09:59 PM
Counters Paul Excel Worksheet Functions 2 February 11th 05 01:52 PM
Using for next with two counters Albert Jameson Excel Programming 1 October 15th 04 02:37 AM
Counters Terri[_5_] Excel Programming 2 September 27th 04 08:23 PM


All times are GMT +1. The time now is 01:33 AM.

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"