ASSUMING that column "A" ALWAYS has data,
then you could use:
'-----------------------------------------------------------------------------------------------
Private Sub Worksheet_Change(ByVal Target As Range)
    If (Application.WorksheetFunction.CountA(Range("A:A")) = 10) Then
      MsgBox "You cannot go beyond this" & Chr(13) & "Workbook will close."
      ThisWorkbook.Close savechanges:=False
    End If
End Sub
'-------------------------------------------------------------------------------------------------

Note:
This macro must go into the SHEET module (not a "standard" module)
the easiest way to open the sheet module is to right click on the
sheet name and select "view code"

Paul




________________________________
From: OSAVentures Calamba <osav...@gmail.com>
To: excel-macros@googlegroups.com
Sent: Mon, November 9, 2009 8:23:57 PM
Subject: $$Excel-Macros$$ procdure to limit the printing to fix number of times

dear gurus,

say i have a worksheet, but i want to limit the printing of this worksheet to 
10 times only.  is it possible?
any vba idea.  most probably this is a worksheet print event?

im new to macro.  thanks for understanding.

dellosa


--~--~---------~--~----~------------~-------~--~----~
----------------------------------------------------------------------------------
Some important links for excel users:
1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
2. Excel tutorials at http://www.excel-macros.blogspot.com
3. Learn VBA Macros at http://www.vbamacros.blogspot.com
4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com or
Ashish Jain @ 26may.1...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

We reach over 6,500 subscribers worldwide and receive many nice notes about the 
learning and support from the group. Our goal is to have 10,000 subscribers by 
the end of 2009. Let friends and co-workers know they can subscribe to group at 
http://groups.google.com/group/excel-macros/subscribe
-~----------~----~----~----~------~----~------~--~---

Reply via email to